aboutsummaryrefslogtreecommitdiff
path: root/other/java/client/src
diff options
context:
space:
mode:
Diffstat (limited to 'other/java/client/src')
-rw-r--r--other/java/client/src/main/proto/filer.proto6
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;
}