summaryrefslogtreecommitdiff
path: root/hadoop-hdfs-project/hadoop-hdfs/src/main
diff options
context:
space:
mode:
authorNanda kumar <nanda@apache.org>2018-01-30 20:12:11 +0530
committerOwen O'Malley <omalley@apache.org>2018-04-26 05:36:04 -0700
commit32245c78e2ddc3ee3135169ff960f65aef7f7661 (patch)
tree6f727d013803dcb823791735714e6a5709b69ec2 /hadoop-hdfs-project/hadoop-hdfs/src/main
parent150c4e1d0bd07b7023d4bb885e722ee14999fd22 (diff)
HDFS-13080. Ozone: Make finalhash in ContainerInfo of StorageContainerDatanodeProtocol.proto optional. Contributed by Elek, Marton.
Diffstat (limited to 'hadoop-hdfs-project/hadoop-hdfs/src/main')
-rw-r--r--hadoop-hdfs-project/hadoop-hdfs/src/main/proto/StorageContainerDatanodeProtocol.proto2
1 files changed, 1 insertions, 1 deletions
diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/main/proto/StorageContainerDatanodeProtocol.proto b/hadoop-hdfs-project/hadoop-hdfs/src/main/proto/StorageContainerDatanodeProtocol.proto
index 6aa6af7833..9a82c9466a 100644
--- a/hadoop-hdfs-project/hadoop-hdfs/src/main/proto/StorageContainerDatanodeProtocol.proto
+++ b/hadoop-hdfs-project/hadoop-hdfs/src/main/proto/StorageContainerDatanodeProtocol.proto
@@ -94,7 +94,7 @@ A container report contains the following information.
*/
message ContainerInfo {
required string containerName = 1;
- required string finalhash = 2;
+ optional string finalhash = 2;
optional int64 size = 3;
optional int64 used = 4;
optional int64 keyCount = 5;