1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-07-03 07:36:45 +02:00

fix bug when vid not found

fix https://github.com/seaweedfs/seaweedfs/issues/4193
This commit is contained in:
chrislu 2023-02-09 17:30:44 -08:00
parent 532a352121
commit 31bb91583f

View file

@ -99,7 +99,7 @@ func doEcEncode(commandEnv *CommandEnv, collection string, vid needle.VolumeId,
// find volume location
locations, found := commandEnv.MasterClient.GetLocations(uint32(vid))
if !found && len(locations) > 0 {
if !found {
return fmt.Errorf("volume %d not found", vid)
}