mirror of
https://github.com/minio/minio.git
synced 2025-11-23 19:17:43 -05:00
XL/PutObject: Handle all pending cases of DiskNotFound.
This commit is contained in:
@@ -63,6 +63,9 @@ func (xl xlObjects) isObject(bucket, prefix string) bool {
|
||||
}
|
||||
_, err := disk.StatFile(bucket, path.Join(prefix, xlMetaJSONFile))
|
||||
if err != nil {
|
||||
if err == errDiskNotFound {
|
||||
continue
|
||||
}
|
||||
return false
|
||||
}
|
||||
break
|
||||
|
||||
Reference in New Issue
Block a user