diff --git a/weed/shell/command_volume_copy.go b/weed/shell/command_volume_copy.go index b682c4e13..8f14e25b3 100644 --- a/weed/shell/command_volume_copy.go +++ b/weed/shell/command_volume_copy.go @@ -32,9 +32,9 @@ func (c *commandVolumeCopy) Help() string { func (c *commandVolumeCopy) Do(args []string, commandEnv *commandEnv, writer io.Writer) (err error) { - if len(args) != 2 { + if len(args) != 3 { fmt.Fprintf(writer, "received args: %+v\n", args) - return fmt.Errorf("need 2 args of ") + return fmt.Errorf("need 3 args of ") } sourceVolumeServer, targetVolumeServer, volumeIdString := args[0], args[1], args[2]