mirror of
https://github.com/minio/minio.git
synced 2025-01-11 15:03:22 -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)
|
||||
|
||||
go func() {
|
||||
if err := globalTierConfigMgr.Init(GlobalContext, newObject); err != nil {
|
||||
err := globalTierConfigMgr.Init(GlobalContext, newObject)
|
||||
if err != nil {
|
||||
logger.LogIf(GlobalContext, err)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user