diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-02-22 02:03:12 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-02-22 02:03:12 -0800 |
| commit | 62191b08eafe896f0f403bbf759f1cb07a59856f (patch) | |
| tree | 953acf93d77c79680fc02079c1efe5037b0c810f /weed/command/volume.go | |
| parent | 30b30b8fe0bdfef08c27268970b4df89f7f0abae (diff) | |
| download | seaweedfs-62191b08eafe896f0f403bbf759f1cb07a59856f.tar.xz seaweedfs-62191b08eafe896f0f403bbf759f1cb07a59856f.zip | |
disk type support custom tags
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 ff951afdc..659c93d96 100644 --- a/weed/command/volume.go +++ b/weed/command/volume.go @@ -78,7 +78,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] hard drive or solid state drive") + v.diskType = cmdVolume.Flag.String("disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag") 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") |
