aboutsummaryrefslogtreecommitdiff
path: root/weed/command/scaffold.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2020-03-23 01:45:43 -0700
committerChris Lu <chris.lu@gmail.com>2020-03-23 01:45:43 -0700
commitdaeb18be3060848214da34250c11062a6588e250 (patch)
tree4cbe7cace4f4082bfa4a890bfdde76940e065332 /weed/command/scaffold.go
parentb97768c51ccfa39aafa0d82cf71a93d6146c4b75 (diff)
downloadseaweedfs-daeb18be3060848214da34250c11062a6588e250.tar.xz
seaweedfs-daeb18be3060848214da34250c11062a6588e250.zip
scaffold: fix master.toml typo
fix https://github.com/chrislusf/seaweedfs/issues/1247
Diffstat (limited to 'weed/command/scaffold.go')
-rw-r--r--weed/command/scaffold.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/weed/command/scaffold.go b/weed/command/scaffold.go
index bcb4fc31e..b26ef758a 100644
--- a/weed/command/scaffold.go
+++ b/weed/command/scaffold.go
@@ -389,10 +389,10 @@ sequencer_etcd_urls = "http://127.0.0.1:2379"
# 010 and 001 has two copies, count_2
# 011 has only 3 copies, count_3
[master.volume_growth]
-count_1 = 7 # create 1 x 7 = 7 actual volumes
-count_2 = 6 # create 2 x 6 = 12 actual volumes
-count_3 = 3 # create 3 x 3 = 9 actual volumes
-count_other = 1 # create n x 1 = n actual volumes
+copy_1 = 7 # create 1 x 7 = 7 actual volumes
+copy_2 = 6 # create 2 x 6 = 12 actual volumes
+copy_3 = 3 # create 3 x 3 = 9 actual volumes
+copy_other = 1 # create n x 1 = n actual volumes
`
)