aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lu <chrislusf@users.noreply.github.com>2021-07-11 23:49:08 -0700
committerGitHub <noreply@github.com>2021-07-11 23:49:08 -0700
commitae7129f717239333cc566fc725bbc9a99654abed (patch)
tree5d4be291c5c78e9396dad993f59d871d5d604ed0
parentd013d6d9680296ba13c3f0da09f3bb3ae8550828 (diff)
parent9e48bff8ee565546998b780bdd463fa94a73cce4 (diff)
downloadseaweedfs-ae7129f717239333cc566fc725bbc9a99654abed.tar.xz
seaweedfs-ae7129f717239333cc566fc725bbc9a99654abed.zip
Merge pull request #2189 from bingoohuang/master
fix typo in fs.configure help message text
-rw-r--r--weed/shell/command_fs_configure.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/weed/shell/command_fs_configure.go b/weed/shell/command_fs_configure.go
index a7e601bec..29cc54792 100644
--- a/weed/shell/command_fs_configure.go
+++ b/weed/shell/command_fs_configure.go
@@ -30,17 +30,17 @@ func (c *commandFsConfigure) Help() string {
fs.configure
# trying the changes and see the possible configuration file content
- fs.configure -locationPrfix=/my/folder -collection=abc
- fs.configure -locationPrfix=/my/folder -collection=abc -ttl=7d
+ fs.configure -locationPrefix=/my/folder -collection=abc
+ fs.configure -locationPrefix=/my/folder -collection=abc -ttl=7d
# example: configure adding only 1 physical volume for each bucket collection
- fs.configure -locationPrfix=/buckets/ -volumeGrowthCount=1
+ fs.configure -locationPrefix=/buckets/ -volumeGrowthCount=1
# apply the changes
- fs.configure -locationPrfix=/my/folder -collection=abc -apply
+ fs.configure -locationPrefix=/my/folder -collection=abc -apply
# delete the changes
- fs.configure -locationPrfix=/my/folder -delete -apply
+ fs.configure -locationPrefix=/my/folder -delete -apply
`
}