Browse Source

Merge pull request #3187 from ningfdx/remote

pull/2815/merge
Chris Lu 3 years ago
committed by GitHub
parent
commit
097a12dfb4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  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
}
locations, found = vc.ecVid2Locations[vid]
return
return locations, found && len(locations) > 0
}
func (vc *vidMap) addLocation(vid uint32, location Location) {

Loading…
Cancel
Save