aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_fs_configure.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2021-02-14 11:38:32 -0800
committerChris Lu <chris.lu@gmail.com>2021-02-14 11:38:43 -0800
commit0bc3a1f9e88baca5f592d50ca028d169c86f0dc8 (patch)
tree3616f3195458db82b987cc8d29a0898b1a72c7eb /weed/shell/command_fs_configure.go
parent4f4c52a6c7071bb4cdf3e5bc77096878bffa119c (diff)
downloadseaweedfs-0bc3a1f9e88baca5f592d50ca028d169c86f0dc8.tar.xz
seaweedfs-0bc3a1f9e88baca5f592d50ca028d169c86f0dc8.zip
disk type only supports hdd and ssd, not ready for random tags yet
Diffstat (limited to 'weed/shell/command_fs_configure.go')
-rw-r--r--weed/shell/command_fs_configure.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/shell/command_fs_configure.go b/weed/shell/command_fs_configure.go
index 02cd7ac69..d0db3722a 100644
--- a/weed/shell/command_fs_configure.go
+++ b/weed/shell/command_fs_configure.go
@@ -52,7 +52,7 @@ func (c *commandFsConfigure) Do(args []string, commandEnv *CommandEnv, writer io
collection := fsConfigureCommand.String("collection", "", "assign writes to this collection")
replication := fsConfigureCommand.String("replication", "", "assign writes with this replication")
ttl := fsConfigureCommand.String("ttl", "", "assign writes with this ttl")
- diskType := fsConfigureCommand.String("disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag")
+ diskType := fsConfigureCommand.String("disk", "", "[hdd|ssd] hard drive or solid state drive")
fsync := fsConfigureCommand.Bool("fsync", false, "fsync for the writes")
volumeGrowthCount := fsConfigureCommand.Int("volumeGrowthCount", 0, "the number of physical volumes to add if no writable volumes")
isDelete := fsConfigureCommand.Bool("delete", false, "delete the configuration by locationPrefix")