mirror of
https://github.com/pgsty/minio.git
synced 2026-07-19 12:10:24 +03:00
use GlobalContext whenever possible (#9280)
This change is throughout the codebase to ensure that all codepaths honor GlobalContext
This commit is contained in:
+3
-3
@@ -137,7 +137,7 @@ func IsDocker() bool {
|
||||
}
|
||||
|
||||
// Log error, as we will not propagate it to caller
|
||||
logger.LogIf(context.Background(), err)
|
||||
logger.LogIf(GlobalContext, err)
|
||||
|
||||
return err == nil
|
||||
}
|
||||
@@ -180,7 +180,7 @@ func IsBOSH() bool {
|
||||
}
|
||||
|
||||
// Log error, as we will not propagate it to caller
|
||||
logger.LogIf(context.Background(), err)
|
||||
logger.LogIf(GlobalContext, err)
|
||||
|
||||
return err == nil
|
||||
}
|
||||
@@ -196,7 +196,7 @@ func getHelmVersion(helmInfoFilePath string) string {
|
||||
// without Helm charts as well.
|
||||
if !os.IsNotExist(err) {
|
||||
reqInfo := (&logger.ReqInfo{}).AppendTags("helmInfoFilePath", helmInfoFilePath)
|
||||
ctx := logger.SetReqInfo(context.Background(), reqInfo)
|
||||
ctx := logger.SetReqInfo(GlobalContext, reqInfo)
|
||||
logger.LogIf(ctx, err)
|
||||
}
|
||||
return ""
|
||||
|
||||
Reference in New Issue
Block a user