diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-02-14 11:38:32 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-02-14 11:38:43 -0800 |
| commit | 0bc3a1f9e88baca5f592d50ca028d169c86f0dc8 (patch) | |
| tree | 3616f3195458db82b987cc8d29a0898b1a72c7eb /weed/command/volume.go | |
| parent | 4f4c52a6c7071bb4cdf3e5bc77096878bffa119c (diff) | |
| download | seaweedfs-0bc3a1f9e88baca5f592d50ca028d169c86f0dc8.tar.xz seaweedfs-0bc3a1f9e88baca5f592d50ca028d169c86f0dc8.zip | |
disk type only supports hdd and ssd, not ready for random tags yet
Diffstat (limited to 'weed/command/volume.go')
| -rw-r--r-- | weed/command/volume.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/command/volume.go b/weed/command/volume.go index 9f1951206..a85f9b6be 100644 --- a/weed/command/volume.go +++ b/weed/command/volume.go @@ -77,7 +77,7 @@ func init() { v.dataCenter = cmdVolume.Flag.String("dataCenter", "", "current volume server's data center name") v.rack = cmdVolume.Flag.String("rack", "", "current volume server's rack name") v.indexType = cmdVolume.Flag.String("index", "memory", "Choose [memory|leveldb|leveldbMedium|leveldbLarge] mode for memory~performance balance.") - v.diskType = cmdVolume.Flag.String("disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag") + v.diskType = cmdVolume.Flag.String("disk", "", "[hdd|ssd] hard drive or solid state drive") v.fixJpgOrientation = cmdVolume.Flag.Bool("images.fix.orientation", false, "Adjust jpg orientation when uploading.") v.readRedirect = cmdVolume.Flag.Bool("read.redirect", true, "Redirect moved or non-local volumes.") v.cpuProfile = cmdVolume.Flag.String("cpuprofile", "", "cpu profile output file") |
