clone volume locations in case they are changed

fix https://github.com/seaweedfs/seaweedfs/issues/4642
This commit is contained in:
chrislu
2023-07-06 00:32:58 -07:00
parent a315490f7d
commit 31b2751aff
5 changed files with 18 additions and 5 deletions

View File

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