aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_fs_merge_volumes.go
diff options
context:
space:
mode:
authorChangrui Chen <geoffreychen777@gmail.com>2025-02-23 14:36:47 +0000
committerGitHub <noreply@github.com>2025-02-23 06:36:47 -0800
commitbe74548cb51f757a026be5909d35b819c62eecd1 (patch)
tree5b4f4d33888d154e64289c53c11232b7b84679ce /weed/shell/command_fs_merge_volumes.go
parent299e372b48d0caddb3d25995ba333e53d4e474a6 (diff)
downloadseaweedfs-be74548cb51f757a026be5909d35b819c62eecd1.tar.xz
seaweedfs-be74548cb51f757a026be5909d35b819c62eecd1.zip
fix: error info size bug in command_fs_merge_volumes.go (#6567)
Diffstat (limited to 'weed/shell/command_fs_merge_volumes.go')
-rw-r--r--weed/shell/command_fs_merge_volumes.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/shell/command_fs_merge_volumes.go b/weed/shell/command_fs_merge_volumes.go
index e98f8e7c8..31d9d6294 100644
--- a/weed/shell/command_fs_merge_volumes.go
+++ b/weed/shell/command_fs_merge_volumes.go
@@ -90,7 +90,7 @@ func (c *commandFsMergeVolumes) Do(args []string, commandEnv *CommandEnv, writer
"volume %d (%d MB) cannot merge into volume %d (%d MB_ due to volume size limit (%d MB)",
fromVolumeId, fromSize/1024/1024,
toVolumeId, toSize/1024/1024,
- c.volumeSizeLimit/1024/102,
+ c.volumeSizeLimit/1024/1024,
)
}
}