Browse Source
fix: error info size bug in command_fs_merge_volumes.go (#6567)
pull/6568/head
Changrui Chen
1 week ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
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, |
|
|
|
) |
|
|
|
} |
|
|
|
} |
|
|
|