HDDS-501. AllocateBlockResponse.keyLocation must be an optional field. Contributed by Arpit Agarwal.
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/f176e8a3 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/f176e8a3 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/f176e8a3 Branch: refs/heads/YARN-7402 Commit: f176e8a3aeca2f72896a55e9d28d320ce3d3f76c Parents: 44857476 Author: Arpit Agarwal <[email protected]> Authored: Tue Sep 18 15:41:28 2018 -0700 Committer: Arpit Agarwal <[email protected]> Committed: Tue Sep 18 15:41:28 2018 -0700 ---------------------------------------------------------------------- hadoop-ozone/common/src/main/proto/OzoneManagerProtocol.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/f176e8a3/hadoop-ozone/common/src/main/proto/OzoneManagerProtocol.proto ---------------------------------------------------------------------- diff --git a/hadoop-ozone/common/src/main/proto/OzoneManagerProtocol.proto b/hadoop-ozone/common/src/main/proto/OzoneManagerProtocol.proto index 242e3b5..975c790 100644 --- a/hadoop-ozone/common/src/main/proto/OzoneManagerProtocol.proto +++ b/hadoop-ozone/common/src/main/proto/OzoneManagerProtocol.proto @@ -324,7 +324,7 @@ message AllocateBlockRequest { message AllocateBlockResponse { required Status status = 1; - required KeyLocation keyLocation = 2; + optional KeyLocation keyLocation = 2; } message CommitKeyRequest { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
