fix: error info size bug in command_fs_merge_volumes.go (#6567)

This commit is contained in:
Changrui Chen
2025-02-23 14:36:47 +00:00
committed by GitHub
parent 299e372b48
commit be74548cb5

View File

@@ -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,
)
}
}