aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_volume_unmount.go
diff options
context:
space:
mode:
authorhilimd <68371223+hilimd@users.noreply.github.com>2020-09-22 09:33:25 +0800
committerGitHub <noreply@github.com>2020-09-22 09:33:25 +0800
commit082500151a85f4d59a9f779174bcb3043b723272 (patch)
treef423c694d8f6af15d59ab1c4401d3e80fac876c3 /weed/shell/command_volume_unmount.go
parentf71f7fcf99ba6d64bfa49fd7411e06bdc2b9d591 (diff)
parent9cdbfc1a4987bdb46f16ae37624ed69ef66778a9 (diff)
downloadseaweedfs-082500151a85f4d59a9f779174bcb3043b723272.tar.xz
seaweedfs-082500151a85f4d59a9f779174bcb3043b723272.zip
Merge pull request #16 from chrislusf/master
sync
Diffstat (limited to 'weed/shell/command_volume_unmount.go')
-rw-r--r--weed/shell/command_volume_unmount.go20
1 files changed, 10 insertions, 10 deletions
diff --git a/weed/shell/command_volume_unmount.go b/weed/shell/command_volume_unmount.go
index 7596bb4c8..f7e5a501b 100644
--- a/weed/shell/command_volume_unmount.go
+++ b/weed/shell/command_volume_unmount.go
@@ -2,7 +2,7 @@ package shell
import (
"context"
- "fmt"
+ "flag"
"io"
"github.com/chrislusf/seaweedfs/weed/operation"
@@ -25,7 +25,7 @@ func (c *commandVolumeUnmount) Name() string {
func (c *commandVolumeUnmount) Help() string {
return `unmount a volume from one volume server
- volume.unmount <volume server host:port> <volume id>
+ volume.unmount -node <volume server host:port> -volumeId <volume id>
This command unmounts a volume from one volume server.
@@ -38,16 +38,16 @@ func (c *commandVolumeUnmount) Do(args []string, commandEnv *CommandEnv, writer
return
}
- if len(args) != 2 {
- fmt.Fprintf(writer, "received args: %+v\n", args)
- return fmt.Errorf("need 2 args of <volume server host:port> <volume id>")
+ volUnmountCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError)
+ volumeIdInt := volUnmountCommand.Int("volumeId", 0, "the volume id")
+ nodeStr := volUnmountCommand.String("node", "", "the volume server <host>:<port>")
+ if err = volUnmountCommand.Parse(args); err != nil {
+ return nil
}
- sourceVolumeServer, volumeIdString := args[0], args[1]
- volumeId, err := needle.NewVolumeId(volumeIdString)
- if err != nil {
- return fmt.Errorf("wrong volume id format %s: %v", volumeId, err)
- }
+ sourceVolumeServer := *nodeStr
+
+ volumeId := needle.VolumeId(*volumeIdInt)
return unmountVolume(commandEnv.option.GrpcDialOption, volumeId, sourceVolumeServer)