HADOOP-11962. Sasl message with MD5 challenge text shouldn't be LOG out even in debug level. Contributed by Junping Du.
This commit is contained in:
parent
5fceebd696
commit
8011d4688f
|
@ -206,6 +206,9 @@ Release 2.8.0 - UNRELEASED
|
|||
HADOOP-11947. test-patch should return early from determine-issue when
|
||||
run in jenkins mode. (Sean Busbey via aw)
|
||||
|
||||
HADOOP-11962. Sasl message with MD5 challenge text shouldn't be LOG out
|
||||
even in debug level. (Junping Du via wheat9)
|
||||
|
||||
Release 2.7.1 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -1448,9 +1448,6 @@ public abstract class Server {
|
|||
}
|
||||
|
||||
private void doSaslReply(Message message) throws IOException {
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("Sending sasl message "+message);
|
||||
}
|
||||
setupResponse(saslResponse, saslCall,
|
||||
RpcStatusProto.SUCCESS, null,
|
||||
new RpcResponseWrapper(message), null, null);
|
||||
|
|
|
@ -385,9 +385,6 @@ public class SaslRpcClient {
|
|||
}
|
||||
RpcSaslProto saslMessage =
|
||||
RpcSaslProto.parseFrom(responseWrapper.getMessageBytes());
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("Received SASL message "+saslMessage);
|
||||
}
|
||||
// handle sasl negotiation process
|
||||
RpcSaslProto.Builder response = null;
|
||||
switch (saslMessage.getState()) {
|
||||
|
|
|
@ -853,9 +853,6 @@ public class UserGroupInformation {
|
|||
.getPrivateCredentials(KerberosTicket.class);
|
||||
for (KerberosTicket ticket : tickets) {
|
||||
if (SecurityUtil.isOriginalTGT(ticket)) {
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("Found tgt " + ticket);
|
||||
}
|
||||
return ticket;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue