mirror of
https://github.com/minio/minio.git
synced 2025-01-25 21:53:16 -05:00
fix: data race, which caused tests execution to fail (#15313)
This commit is contained in:
parent
2bc7ca2d34
commit
e68e76e143
@ -590,7 +590,8 @@ func serverMain(ctx *cli.Context) {
|
|||||||
initBackgroundTransition(GlobalContext, newObject)
|
initBackgroundTransition(GlobalContext, newObject)
|
||||||
|
|
||||||
go func() {
|
go func() {
|
||||||
if err := globalTierConfigMgr.Init(GlobalContext, newObject); err != nil {
|
err := globalTierConfigMgr.Init(GlobalContext, newObject)
|
||||||
|
if err != nil {
|
||||||
logger.LogIf(GlobalContext, err)
|
logger.LogIf(GlobalContext, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user