Details
-
Type:
Bug
-
Status: Resolved
-
Priority:
Trivial
-
Resolution: Fixed
-
Affects Version/s: 2.9.0
-
Fix Version/s: 3.2.0
-
Component/s: None
-
Labels: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
Issue Links
- links to