mirror of
https://github.com/minio/minio.git
synced 2024-12-24 22:25:54 -05:00
XL/Selfheal: skip reading from disk if ReadFile had returned error. (#1575)
This commit is contained in:
parent
c314a98c1a
commit
409e09c1e5
@ -117,6 +117,10 @@ func (xl XL) healFile(volume string, path string) error {
|
||||
// Skip reading if the part needs healing.
|
||||
continue
|
||||
}
|
||||
if reader == nil {
|
||||
// If ReadFile() had returned error, do not read from this disk.
|
||||
continue
|
||||
}
|
||||
_, err = io.ReadFull(reader, enBlocks[index])
|
||||
if err != nil && err != io.ErrUnexpectedEOF {
|
||||
enBlocks[index] = nil
|
||||
|
Loading…
Reference in New Issue
Block a user