From be74548cb51f757a026be5909d35b819c62eecd1 Mon Sep 17 00:00:00 2001 From: Changrui Chen Date: Sun, 23 Feb 2025 14:36:47 +0000 Subject: [PATCH] fix: error info size bug in command_fs_merge_volumes.go (#6567) --- weed/shell/command_fs_merge_volumes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, ) } }