HADOOP-15455. Incorrect debug message in KMSACL#hasAccess. Contributed by Yuen-Kuei Hsueh.
This commit is contained in:
parent
8fdc993a99
commit
438ef4951a
@ -247,9 +247,9 @@ public boolean hasAccess(Type type, UserGroupInformation ugi) {
|
|||||||
if (blacklist == null) {
|
if (blacklist == null) {
|
||||||
LOG.debug("No blacklist for {}", type.toString());
|
LOG.debug("No blacklist for {}", type.toString());
|
||||||
} else if (access) {
|
} else if (access) {
|
||||||
LOG.debug("user is in {}" , blacklist.getAclString());
|
|
||||||
} else {
|
|
||||||
LOG.debug("user is not in {}" , blacklist.getAclString());
|
LOG.debug("user is not in {}" , blacklist.getAclString());
|
||||||
|
} else {
|
||||||
|
LOG.debug("user is in {}" , blacklist.getAclString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user