XL/ListDir: break out of loop if list on one disk is a success. (#1534)

This commit is contained in:
Krishna Srinivas 2016-05-09 00:35:19 +05:30 committed by Harshavardhana
parent a205aca6d2
commit 88e1c04259

View File

@ -404,6 +404,8 @@ func (xl XL) ListDir(volume, dirPath string) (entries []string, err error) {
entries[i] = strings.TrimSuffix(entry, slashSeparator)
}
}
// We have list from one of the disks hence break the loop.
break
}
return
}