mirror of
https://github.com/pgsty/minio.git
synced 2026-07-22 05:30:24 +03:00
reject mixed drive situations with drives on root disks (#11057)
till now we used to match the inode number of the root drive and the drive path minio would use, if they match we knew that its a root disk. this may not be true in all situations such as running inside a container environment where the container might be mounted from a different partition altogether, root disk detection might fail.
This commit is contained in:
+1
-1
@@ -240,7 +240,7 @@ func newXLStorage(ep Endpoint) (*xlStorage, error) {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
rootDisk, err := disk.IsRootDisk(path)
|
||||
rootDisk, err := disk.IsRootDisk(path, "/")
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user