Clarify root disk error (#11314)

Make it clearer what the problem is and how to resolve it.
This commit is contained in:
Klaus Post 2021-01-20 13:11:42 -08:00 committed by GitHub
parent 7624c8b9bb
commit dac19d7272
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1203,7 +1203,8 @@ func markRootDisksAsDown(storageDisks []StorageAPI, errs []error) {
if storageDisks[i] != nil && infos[i].RootDisk {
// We should not heal on root disk. i.e in a situation where the minio-administrator has unmounted a
// defective drive we should not heal a path on the root disk.
logger.Info("Disk `%s` is a root disk. Please ensure the disk is mounted properly, refusing to use root disk.",
logger.Info("Disk `%s` the same as the system root disk.\n"+
"Disk will not be used. Please supply a separate disk and restart the server.",
storageDisks[i].String())
storageDisks[i] = nil
}