mirror of
https://github.com/minio/minio.git
synced 2025-02-26 04:49:16 -05:00
add object api check in fs-v1 before returning ready (#9285)
fs-v1 in server mode only checks to see if the path exist, so that it returns ready before it is indeed ready. This change adds a check to ensure that the global object api is available too before reporting ready. Fixes #9283
This commit is contained in:
parent
44decbeae0
commit
a973402821
11
cmd/fs-v1.go
11
cmd/fs-v1.go
@ -1392,6 +1392,13 @@ func (fs *FSObjects) IsCompressionSupported() bool {
|
||||
|
||||
// IsReady - Check if the backend disk is ready to accept traffic.
|
||||
func (fs *FSObjects) IsReady(_ context.Context) bool {
|
||||
_, err := os.Stat(fs.fsPath)
|
||||
return err == nil
|
||||
if _, err := os.Stat(fs.fsPath); err != nil {
|
||||
return false
|
||||
}
|
||||
|
||||
globalObjLayerMutex.RLock()
|
||||
res := globalObjectAPI != nil && !globalSafeMode
|
||||
globalObjLayerMutex.RUnlock()
|
||||
|
||||
return res
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user