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

master
Krishna Srinivas 9 years ago committed by Harshavardhana
parent a205aca6d2
commit 88e1c04259
  1. 2
      xl-erasure-v1.go

@ -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
}

Loading…
Cancel
Save