aboutsummaryrefslogtreecommitdiff
path: root/weed/command/mount.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/mount.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/mount.go')
-rw-r--r--weed/command/mount.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/command/mount.go b/weed/command/mount.go
index ea439af7c..aa6d91740 100644
--- a/weed/command/mount.go
+++ b/weed/command/mount.go
@@ -42,7 +42,7 @@ func init() {
mountOptions.dirAutoCreate = cmdMount.Flag.Bool("dirAutoCreate", false, "auto create the directory to mount to")
mountOptions.collection = cmdMount.Flag.String("collection", "", "collection to create the files")
mountOptions.replication = cmdMount.Flag.String("replication", "", "replication(e.g. 000, 001) to create to files. If empty, let filer decide.")
- mountOptions.diskType = cmdMount.Flag.String("disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag")
+ mountOptions.diskType = cmdMount.Flag.String("disk", "", "[hdd|ssd] hard drive or solid state drive")
mountOptions.ttlSec = cmdMount.Flag.Int("ttl", 0, "file ttl in seconds")
mountOptions.chunkSizeLimitMB = cmdMount.Flag.Int("chunkSizeLimitMB", 2, "local write buffer size, also chunk large files")
mountOptions.concurrentWriters = cmdMount.Flag.Int("concurrentWriters", 128, "limit concurrent goroutine writers if not 0")