Details
-
Bug
-
Status: Resolved
-
Trivial
-
Resolution: Fixed
-
2.9.0
-
None
-
None
Description
If the user is in the blacklist "foo bar", it prints "user is not in foo bar".
else, it prints "user is in foo bar"
KMSACLs#hasAccess()
if (access) { AccessControlList blacklist = blacklistedAcls.get(type); access = (blacklist == null) || !blacklist.isUserInList(ugi); if (LOG.isDebugEnabled()) { if (blacklist == null) { LOG.debug("No blacklist for {}", type.toString()); } else if (access) { LOG.debug("user is in {}" , blacklist.getAclString()); } else { LOG.debug("user is not in {}" , blacklist.getAclString()); } } }
Attachments
Attachments
Issue Links
- links to