HADOOP-12567. NPE in SaslRpcServer. Contributed by Sergey Shelukhin.

This commit is contained in:
cnauroth 2015-11-17 15:59:57 -08:00
parent 6a61928fb7
commit 7fab5c8cec
2 changed files with 5 additions and 2 deletions

View File

@ -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()

View File

@ -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);
} }