aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_fs_configure.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2020-12-13 12:06:21 -0800
committerChris Lu <chris.lu@gmail.com>2020-12-13 12:06:21 -0800
commit8baba93fce4e3f6e0400a28ff01609f9358449de (patch)
tree64f4d338a3fe1aa3eceb81b107b625d80042ce30 /weed/shell/command_fs_configure.go
parent51eadaf2b6ac064277ed82ff98023429c047b5a3 (diff)
downloadseaweedfs-8baba93fce4e3f6e0400a28ff01609f9358449de.tar.xz
seaweedfs-8baba93fce4e3f6e0400a28ff01609f9358449de.zip
rename parameter name to "disk"
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 d97f8cc15..a1e8ca581 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("diskType", "", "[hdd|ssd] choose between hard drive or solid state drive")
+ diskType := fsConfigureCommand.String("disk", "", "[hdd|ssd] choose between 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")