aboutsummaryrefslogtreecommitdiff
path: root/weed/command/filer_sync.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/command/filer_sync.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/command/filer_sync.go')
-rw-r--r--weed/command/filer_sync.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/command/filer_sync.go b/weed/command/filer_sync.go
index f8beb6fda..725f7d485 100644
--- a/weed/command/filer_sync.go
+++ b/weed/command/filer_sync.go
@@ -58,8 +58,8 @@ func init() {
syncOptions.bCollection = cmdFilerSynchronize.Flag.String("b.collection", "", "collection on filer B")
syncOptions.aTtlSec = cmdFilerSynchronize.Flag.Int("a.ttlSec", 0, "ttl in seconds on filer A")
syncOptions.bTtlSec = cmdFilerSynchronize.Flag.Int("b.ttlSec", 0, "ttl in seconds on filer B")
- syncOptions.aDiskType = cmdFilerSynchronize.Flag.String("a.disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag on filer A")
- syncOptions.bDiskType = cmdFilerSynchronize.Flag.String("b.disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag on filer B")
+ syncOptions.aDiskType = cmdFilerSynchronize.Flag.String("a.disk", "", "[hdd|ssd] hard drive or solid state drive on filer A")
+ syncOptions.bDiskType = cmdFilerSynchronize.Flag.String("b.disk", "", "[hdd|ssd] hard drive or solid state drive on filer B")
syncOptions.aProxyByFiler = cmdFilerSynchronize.Flag.Bool("a.filerProxy", false, "read and write file chunks by filer A instead of volume servers")
syncOptions.bProxyByFiler = cmdFilerSynchronize.Flag.Bool("b.filerProxy", false, "read and write file chunks by filer B instead of volume servers")
syncOptions.aDebug = cmdFilerSynchronize.Flag.Bool("a.debug", false, "debug mode to print out filer A received files")