HADOOP-9868. Server must not advertise kerberos realm. Contributed by Daryn Sharp.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1514448 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Kihwal Lee 2013-08-15 19:22:09 +00:00
parent d62bd71d65
commit 0e47ebb32f
2 changed files with 3 additions and 1 deletions

View File

@ -394,6 +394,8 @@ Release 2.1.1-beta - UNRELEASED
HADOOP-9381. Document dfs cp -f option. (Keegan Witt, suresh via suresh) HADOOP-9381. Document dfs cp -f option. (Keegan Witt, suresh via suresh)
HADOOP-9868. Server must not advertise kerberos realm. (daryn via kihwal)
Release 2.1.0-beta - 2013-08-06 Release 2.1.0-beta - 2013-08-06
INCOMPATIBLE CHANGES INCOMPATIBLE CHANGES

View File

@ -104,7 +104,7 @@ public SaslRpcServer(AuthMethod authMethod) throws IOException {
if (LOG.isDebugEnabled()) if (LOG.isDebugEnabled())
LOG.debug("Kerberos principal name is " + fullName); LOG.debug("Kerberos principal name is " + fullName);
// don't use KerberosName because we don't want auth_to_local // don't use KerberosName because we don't want auth_to_local
String[] parts = fullName.split("[/@]", 2); String[] parts = fullName.split("[/@]", 3);
protocol = parts[0]; protocol = parts[0];
// should verify service host is present here rather than in create() // should verify service host is present here rather than in create()
// but lazy tests are using a UGI that isn't a SPN... // but lazy tests are using a UGI that isn't a SPN...