mirror of
https://github.com/minio/minio.git
synced 2026-05-28 04:03:23 -04:00
fix: data race, which caused tests execution to fail (#15313)
This commit is contained in:
parent
2bc7ca2d34
commit
e68e76e143
1 changed files with 2 additions and 1 deletions
|
|
@ -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 a new issue