Avoid error modification during IAM migration (#8156)

The underlying errors are important, for IAM
requirements and should wait appropriately at
the caller level, this allows for distributed
setups to run properly and not fail prematurely
during startup.

Also additionally fix the onlineDisk counting
This commit is contained in:
Harshavardhana
2019-08-30 10:41:02 -07:00
committed by GitHub
parent 4553db3872
commit 0cd0f6c255
3 changed files with 5 additions and 4 deletions

View File

@@ -101,6 +101,7 @@ func getDisksInfo(disks []StorageAPI) (disksInfo []DiskInfo, onlineDisks int, of
for _, err := range errs {
if err != nil {
offlineDisks++
continue
}
onlineDisks++
}