ajayydv commented on a change in pull request #594: HDDS-1246. Add ozone
delegation token utility subcmd for Ozone CLI. Contributed by Xiaoyu Yao.
URL: https://github.com/apache/hadoop/pull/594#discussion_r265406128
##########
File path:
hadoop-ozone/client/src/main/java/org/apache/hadoop/ozone/client/rpc/RpcClient.java
##########
@@ -445,7 +444,18 @@ public void removeBucketAcls(
@Override
public Token<OzoneTokenIdentifier> getDelegationToken(Text renewer)
throws IOException {
- return ozoneManagerClient.getDelegationToken(renewer);
+
+ Token<OzoneTokenIdentifier> token =
+ ozoneManagerClient.getDelegationToken(renewer);
+ if (token != null) {
+ Text dtService =
+ getOMProxyProvider().getProxy().getDelegationTokenService();
+ token.setService(dtService);
Review comment:
I think this if for OM HA. Are we taking Om HA in badlands?
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]