HADOOP-10310. SaslRpcServer should be initialized even when no secret manager present. Contributed by Aaron T. Myers.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1562863 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0f3461e489
commit
285854fc2e
|
@ -665,6 +665,9 @@ Release 2.3.0 - UNRELEASED
|
||||||
HADOOP-10288. Explicit reference to Log4JLogger breaks non-log4j users
|
HADOOP-10288. Explicit reference to Log4JLogger breaks non-log4j users
|
||||||
(todd)
|
(todd)
|
||||||
|
|
||||||
|
HADOOP-10310. SaslRpcServer should be initialized even when no secret
|
||||||
|
manager present. (atm)
|
||||||
|
|
||||||
Release 2.2.0 - 2013-10-13
|
Release 2.2.0 - 2013-10-13
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -2206,7 +2206,7 @@ public abstract class Server {
|
||||||
// Create the responder here
|
// Create the responder here
|
||||||
responder = new Responder();
|
responder = new Responder();
|
||||||
|
|
||||||
if (secretManager != null) {
|
if (secretManager != null || UserGroupInformation.isSecurityEnabled()) {
|
||||||
SaslRpcServer.init(conf);
|
SaslRpcServer.init(conf);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue