pakapoj-tul commented on a change in pull request #2343:
URL: https://github.com/apache/ozone/pull/2343#discussion_r666694784
##########
File path:
hadoop-ozone/client/src/main/java/org/apache/hadoop/ozone/client/rpc/RpcClient.java
##########
@@ -541,7 +541,7 @@ private static void verifySpaceQuota(long quota) throws
OMException {
* @return listOfAcls
* */
private List<OzoneAcl> getAclList() {
- return OzoneAclUtil.getAclList(ugi.getUserName(), ugi.getGroupNames(),
+ return OzoneAclUtil.getAclList(ugi.getShortUserName(), ugi.getGroupNames(),
Review comment:
Ref to the case above, user can't to inherit the acl to the children so
I think we should inherit the acl
What’s the meaning of `aclscope` `ACCESS` and `DEFAULT` tho?
```
enum OzoneAclScope {
ACCESS = 0;
DEFAULT = 1;
}
```
b/c it filter only `DEFAULT` acl from what I see
[here](https://github.com/apache/ozone/blob/master/hadoop-ozone/common/src/main/java/org/apache/hadoop/ozone/om/helpers/OzoneAclUtil.java#L171)
--
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]