HADOOP-12567. NPE in SaslRpcServer. Contributed by Sergey Shelukhin.
This commit is contained in:
parent
6a61928fb7
commit
7fab5c8cec
|
@ -1326,6 +1326,8 @@ Release 2.8.0 - UNRELEASED
|
||||||
HADOOP-12560: Fix sprintf warnings in {{DomainSocket.c}} introduced by
|
HADOOP-12560: Fix sprintf warnings in {{DomainSocket.c}} introduced by
|
||||||
HADOOP-12344 (Mingliang Liu via Colin P. McCabe)
|
HADOOP-12344 (Mingliang Liu via Colin P. McCabe)
|
||||||
|
|
||||||
|
HADOOP-12567: NPE in SaslRpcServer (Sergey Shelukhin via cnauroth)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
HADOOP-12051. ProtobufRpcEngine.invoke() should use Exception.toString()
|
HADOOP-12051. ProtobufRpcEngine.invoke() should use Exception.toString()
|
||||||
|
|
|
@ -322,8 +322,9 @@ public class SaslRpcServer {
|
||||||
}
|
}
|
||||||
if (ac.isAuthorized()) {
|
if (ac.isAuthorized()) {
|
||||||
if (LOG.isDebugEnabled()) {
|
if (LOG.isDebugEnabled()) {
|
||||||
String username =
|
UserGroupInformation logUser =
|
||||||
getIdentifier(authzid, secretManager).getUser().getUserName();
|
getIdentifier(authzid, secretManager).getUser();
|
||||||
|
String username = logUser == null ? null : logUser.getUserName();
|
||||||
LOG.debug("SASL server DIGEST-MD5 callback: setting "
|
LOG.debug("SASL server DIGEST-MD5 callback: setting "
|
||||||
+ "canonicalized client ID: " + username);
|
+ "canonicalized client ID: " + username);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue