check for update in background (#13889)

This commit is contained in:
Harshavardhana
2021-12-13 09:43:03 -08:00
committed by GitHub
parent 3e34e41a5a
commit 8144a125ce
3 changed files with 15 additions and 10 deletions

View File

@@ -460,10 +460,13 @@ func serverMain(ctx *cli.Context) {
}
}
if !globalCLIContext.Quiet && !globalInplaceUpdateDisabled {
// Check for new updates from dl.min.io.
checkUpdate(getMinioMode())
}
// Check for updates in non-blocking manner.
go func() {
if !globalCLIContext.Quiet && !globalInplaceUpdateDisabled {
// Check for new updates from dl.min.io.
checkUpdate(getMinioMode())
}
}()
if !globalActiveCred.IsValid() && globalIsDistErasure {
globalActiveCred = auth.DefaultCredentials