mirror of
https://github.com/pgsty/minio.git
synced 2026-07-20 12:40:24 +03: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:
+9
-2
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user