1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-05-09 04:50:47 +02:00

fix(wdclient): GetLocations return

This commit is contained in:
ningfd 2022-06-15 19:20:13 +08:00
parent d4ef06cdcf
commit 338705f375

View file

@ -133,7 +133,7 @@ func (vc *vidMap) GetLocations(vid uint32) (locations []Location, found bool) {
return
}
locations, found = vc.ecVid2Locations[vid]
return
return locations, found && len(locations) > 0
}
func (vc *vidMap) addLocation(vid uint32, location Location) {