huangzhaobo99 commented on PR #6379:
URL: https://github.com/apache/hadoop/pull/6379#issuecomment-1868494355
May be necessary to modify the erasurecoding.proto file, `required` to
`repeated`,
similar to `DistributedFileSystem#addErasureCodingPolicies`.
This modification will result in a many to many relationship.
```proto
// now
message GetECTopologyResultForPoliciesResponseProto {
required ECTopologyVerifierResultProto response = 1;
}
// expect
message GetECTopologyResultForPoliciesResponseProto {
repeated ECTopologyVerifierResultProto response = 1;
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]