diff options
| author | hilimd <68371223+hilimd@users.noreply.github.com> | 2020-11-17 19:01:04 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-17 19:01:04 +0800 |
| commit | aec071187e5d4408edf5561f23ebf87ec572f2b9 (patch) | |
| tree | dccea794e0d144ef5abd441e30f82f4ad9e0d6c5 /other/java/client | |
| parent | 218561c206943d179740a80d8bb21e1f42b35daa (diff) | |
| parent | dc304342b2a5113d402833b024c2123ac70fb162 (diff) | |
| download | seaweedfs-aec071187e5d4408edf5561f23ebf87ec572f2b9.tar.xz seaweedfs-aec071187e5d4408edf5561f23ebf87ec572f2b9.zip | |
Merge pull request #38 from chrislusf/master
sync
Diffstat (limited to 'other/java/client')
| -rw-r--r-- | other/java/client/src/main/proto/filer.proto | 6 |
1 files changed, 4 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..f61b62fa3 100644 --- a/other/java/client/src/main/proto/filer.proto +++ b/other/java/client/src/main/proto/filer.proto @@ -358,11 +358,13 @@ 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; + uint32 volume_growth_count = 7; } repeated PathConf locations = 2; } |
