diff options
| author | Chris Lu <chris.lu@gmail.com> | 2019-11-28 18:04:25 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2019-11-28 18:04:25 -0800 |
| commit | 641b92f53c057a2d0dd957ef2da26aadf0b70419 (patch) | |
| tree | d2bd22306133e908460ea082d1c632cf0641f14e | |
| parent | ee2072dff921fdb5e71ce421a7c11fdcbcafa41c (diff) | |
| download | seaweedfs-641b92f53c057a2d0dd957ef2da26aadf0b70419.tar.xz seaweedfs-641b92f53c057a2d0dd957ef2da26aadf0b70419.zip | |
fix scaffold error
| -rw-r--r-- | weed/command/scaffold.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/command/scaffold.go b/weed/command/scaffold.go index 0d9350aa1..d0bdb3c60 100644 --- a/weed/command/scaffold.go +++ b/weed/command/scaffold.go @@ -351,10 +351,10 @@ sleep_minutes = 17 # sleep minutes between each script execution default_filer_url = "http://localhost:8888/" [master.sequencer] -type = memory # Choose [memory|etcd] type for storing the file id sequence +type = "memory" # Choose [memory|etcd] type for storing the file id sequence # when sequencer.type = etcd, set listen client urls of etcd cluster that store file id sequence # example : http://127.0.0.1:2379,http://127.0.0.1:2389 -sequencer_etcd_urls = http://127.0.0.1:2379 +sequencer_etcd_urls = "http://127.0.0.1:2379" [storage.backend.s3] |
