From dad3a26fb6a114e8b689ae60935e5f48d29cdd14 Mon Sep 17 00:00:00 2001 From: coffeecloudgit <168399738+coffeecloudgit@users.noreply.github.com> Date: Sat, 28 Sep 2024 03:04:27 +0800 Subject: [PATCH] Update volume_grpc_erasure_coding.go , fix no space left bug (#6077) --- weed/server/volume_grpc_erasure_coding.go | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/weed/server/volume_grpc_erasure_coding.go b/weed/server/volume_grpc_erasure_coding.go index f9c5ea683..fe12b3a22 100644 --- a/weed/server/volume_grpc_erasure_coding.go +++ b/weed/server/volume_grpc_erasure_coding.go @@ -150,8 +150,10 @@ func (vs *VolumeServer) VolumeEcShardsCopy(ctx context.Context, req *volume_serv }) } else { location = vs.store.FindFreeLocation(func(location *storage.DiskLocation) bool { - _, found := location.FindEcVolume(needle.VolumeId(req.VolumeId)) - return found + //(location.FindEcVolume) This method is error, will cause location is nil, redundant judgment + // _, found := location.FindEcVolume(needle.VolumeId(req.VolumeId)) + // return found + return true }) } if location == nil { @@ -191,12 +193,6 @@ func (vs *VolumeServer) VolumeEcShardsCopy(ctx context.Context, req *volume_serv return err } } - - if req.CopyEcxFile { //when location no volume before copy - glog.V(0).Infof("Re LoadNewVolumes: %v", req) - vs.store.LoadNewVolumes() - } - return nil }) if err != nil {