Browse Source

Merge branch 'master' into msg_channel

pull/1318/head
Chris Lu 5 years ago
parent
commit
3fbf635308
  1. 6
      weed/server/master_server_handlers.go

6
weed/server/master_server_handlers.go

@ -72,9 +72,6 @@ func (ms *MasterServer) findVolumeLocation(collection, vid string) operation.Loo
for _, loc := range machines {
locations = append(locations, operation.Location{Url: loc.Url(), PublicUrl: loc.PublicUrl})
}
if locations == nil {
err = fmt.Errorf("volume id %s not found", vid)
}
}
} else {
machines, getVidLocationsErr := ms.MasterClient.GetVidLocations(vid)
@ -83,6 +80,9 @@ func (ms *MasterServer) findVolumeLocation(collection, vid string) operation.Loo
}
err = getVidLocationsErr
}
if len(locations) == 0 && err == nil {
err = fmt.Errorf("volume id %s not found", vid)
}
ret := operation.LookupResult{
VolumeId: vid,
Locations: locations,

Loading…
Cancel
Save