HADOOP-8309. Pseudo & Kerberos AuthenticationHandler should use getType() to create token (tucu)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1329713 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f340d6c894
commit
f9993b5ffb
|
@ -288,7 +288,7 @@ public class KerberosAuthenticationHandler implements AuthenticationHandler {
|
|||
String clientPrincipal = gssContext.getSrcName().toString();
|
||||
KerberosName kerberosName = new KerberosName(clientPrincipal);
|
||||
String userName = kerberosName.getShortName();
|
||||
token = new AuthenticationToken(userName, clientPrincipal, TYPE);
|
||||
token = new AuthenticationToken(userName, clientPrincipal, getType());
|
||||
response.setStatus(HttpServletResponse.SC_OK);
|
||||
LOG.trace("SPNEGO completed for principal [{}]", clientPrincipal);
|
||||
}
|
||||
|
|
|
@ -126,7 +126,7 @@ public class PseudoAuthenticationHandler implements AuthenticationHandler {
|
|||
throw new AuthenticationException("Anonymous requests are disallowed");
|
||||
}
|
||||
} else {
|
||||
token = new AuthenticationToken(userName, userName, TYPE);
|
||||
token = new AuthenticationToken(userName, userName, getType());
|
||||
}
|
||||
return token;
|
||||
}
|
||||
|
|
|
@ -370,6 +370,9 @@ Release 2.0.0 - UNRELEASED
|
|||
HADOOP-8284. clover integration broken, also mapreduce poms are pulling
|
||||
in clover as a dependency. (phunt via tucu)
|
||||
|
||||
HADOOP-8309. Pseudo & Kerberos AuthenticationHandler should use
|
||||
getType() to create token (tucu)
|
||||
|
||||
BREAKDOWN OF HADOOP-7454 SUBTASKS
|
||||
|
||||
HADOOP-7455. HA: Introduce HA Service Protocol Interface. (suresh)
|
||||
|
|
Loading…
Reference in New Issue