mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-04-05 16:00:15 +08:00
fix: fix the wrong error return value (#6603)
This commit is contained in:
parent
3ed52662df
commit
533b675ec8
@ -58,7 +58,7 @@ func (fs *FilerServer) mergeChunks(so *operation.StorageOption, inputChunks []*f
|
||||
if err != nil {
|
||||
glog.Errorf("Failed to resolve old entry chunks when delete old entry chunks. new: %s, old: %s",
|
||||
mergedChunks, inputChunks)
|
||||
return
|
||||
return mergedChunks, err
|
||||
}
|
||||
fs.filer.DeleteChunksNotRecursive(garbage)
|
||||
return
|
||||
|
Loading…
Reference in New Issue
Block a user