Browse Source

fix(wdclient): GetLocations return

pull/3187/head
ningfd 3 years ago
parent
commit
338705f375
  1. 2
      weed/wdclient/vid_map.go

2
weed/wdclient/vid_map.go

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

Loading…
Cancel
Save