From dac19d727292420ac80350cdd6f68aff569cdb5c Mon Sep 17 00:00:00 2001 From: Klaus Post Date: Wed, 20 Jan 2021 13:11:42 -0800 Subject: [PATCH] Clarify root disk error (#11314) Make it clearer what the problem is and how to resolve it. --- cmd/erasure-sets.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/erasure-sets.go b/cmd/erasure-sets.go index f5d0f8961..a8ab88f27 100644 --- a/cmd/erasure-sets.go +++ b/cmd/erasure-sets.go @@ -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 }