diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-11-16 16:50:12 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-11-16 16:50:12 -0800 |
| commit | 5f19e81dabf7e7bc4f7e9d5506139d36b981501c (patch) | |
| tree | e57e47addb640fa08061de1e0592de980c03d6f5 /other/java/client/src | |
| parent | ed1ce3f2998cc51e2310d23098befdc080b56c74 (diff) | |
| download | seaweedfs-5f19e81dabf7e7bc4f7e9d5506139d36b981501c.tar.xz seaweedfs-5f19e81dabf7e7bc4f7e9d5506139d36b981501c.zip | |
filer confi: support hierachical configuration
Diffstat (limited to 'other/java/client/src')
| -rw-r--r-- | other/java/client/src/main/proto/filer.proto | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/other/java/client/src/main/proto/filer.proto b/other/java/client/src/main/proto/filer.proto index 4d9398897..42787df79 100644 --- a/other/java/client/src/main/proto/filer.proto +++ b/other/java/client/src/main/proto/filer.proto @@ -358,8 +358,9 @@ message FilerConf { string replication = 3; string ttl = 4; enum DiskType { - HDD = 0; - SSD = 1; + NONE = 0; + HDD = 1; + SSD = 2; } DiskType disk_type = 5; bool fsync = 6; |
