HADOOP-10471. Reduce the visibility of constants in ProxyUsers. Contributed by Benoy Antony.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1592915 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a6d19c51a1
commit
2d5362073c
|
@ -368,6 +368,9 @@ Release 2.5.0 - UNRELEASED
|
|||
HADOOP-10549. MAX_SUBST and varPat should be final in Configuration.java.
|
||||
(Gera Shegalov via cnauroth)
|
||||
|
||||
HADOOP-10471. Reduce the visibility of constants in ProxyUsers.
|
||||
(Benoy Antony via wheat9)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
BUG FIXES
|
||||
|
|
|
@ -40,9 +40,9 @@ import com.google.common.annotations.VisibleForTesting;
|
|||
public class ProxyUsers {
|
||||
|
||||
private static final String CONF_HOSTS = ".hosts";
|
||||
public static final String CONF_GROUPS = ".groups";
|
||||
public static final String CONF_HADOOP_PROXYUSER = "hadoop.proxyuser.";
|
||||
public static final String CONF_HADOOP_PROXYUSER_RE = "hadoop\\.proxyuser\\.";
|
||||
private static final String CONF_GROUPS = ".groups";
|
||||
private static final String CONF_HADOOP_PROXYUSER = "hadoop.proxyuser.";
|
||||
private static final String CONF_HADOOP_PROXYUSER_RE = "hadoop\\.proxyuser\\.";
|
||||
public static final String CONF_HADOOP_PROXYSERVERS = "hadoop.proxyservers";
|
||||
|
||||
private static boolean init = false;
|
||||
|
|
|
@ -284,8 +284,8 @@ public class TestJspHelper {
|
|||
String user = "TheNurse";
|
||||
conf.set(DFSConfigKeys.HADOOP_SECURITY_AUTHENTICATION, "kerberos");
|
||||
|
||||
conf.set(ProxyUsers.CONF_HADOOP_PROXYUSER+realUser+".groups", "*");
|
||||
conf.set(ProxyUsers.CONF_HADOOP_PROXYUSER+realUser+".hosts", "*");
|
||||
conf.set(ProxyUsers.getProxySuperuserGroupConfKey(realUser), "*");
|
||||
conf.set(ProxyUsers.getProxySuperuserIpConfKey(realUser), "*");
|
||||
ProxyUsers.refreshSuperUserGroupsConfiguration(conf);
|
||||
UserGroupInformation.setConfiguration(conf);
|
||||
UserGroupInformation ugi;
|
||||
|
|
Loading…
Reference in New Issue