aboutsummaryrefslogtreecommitdiff
path: root/weed/command/filer_copy.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2021-02-13 15:47:08 -0800
committerChris Lu <chris.lu@gmail.com>2021-02-13 15:47:08 -0800
commitef76365ec211e1af5b8085a2496c8d9941316e9e (patch)
tree4f7c2e759b46ca0938b1093dc66959ffed5ae5be /weed/command/filer_copy.go
parent7ce647f27e756b8f09c0dc0c7ca687e243d91ae0 (diff)
downloadseaweedfs-ef76365ec211e1af5b8085a2496c8d9941316e9e.tar.xz
seaweedfs-ef76365ec211e1af5b8085a2496c8d9941316e9e.zip
adjust help message
Diffstat (limited to 'weed/command/filer_copy.go')
-rw-r--r--weed/command/filer_copy.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/command/filer_copy.go b/weed/command/filer_copy.go
index 6b8902ca6..8be1b09ba 100644
--- a/weed/command/filer_copy.go
+++ b/weed/command/filer_copy.go
@@ -55,7 +55,7 @@ func init() {
copy.replication = cmdCopy.Flag.String("replication", "", "replication type")
copy.collection = cmdCopy.Flag.String("collection", "", "optional collection name")
copy.ttl = cmdCopy.Flag.String("ttl", "", "time to live, e.g.: 1m, 1h, 1d, 1M, 1y")
- copy.diskType = cmdCopy.Flag.String("disk", "", "[hdd|ssd] choose between hard drive or solid state drive")
+ copy.diskType = cmdCopy.Flag.String("disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag")
copy.maxMB = cmdCopy.Flag.Int("maxMB", 32, "split files larger than the limit")
copy.concurrenctFiles = cmdCopy.Flag.Int("c", 8, "concurrent file copy goroutines")
copy.concurrenctChunks = cmdCopy.Flag.Int("concurrentChunks", 8, "concurrent chunk copy goroutines for each file")