HADOOP-6633. normalize property names for JT/NN kerberos principal names in configuration
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@946487 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
847e009e1c
commit
78778a158c
@ -3,6 +3,9 @@ Hadoop Change Log
|
|||||||
Trunk (unreleased changes)
|
Trunk (unreleased changes)
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
|
HADOOP-6633. normalize property names for JT/NN kerberos principal
|
||||||
|
names in configuration (boryas)
|
||||||
|
|
||||||
HADOOP-6627. "Bad Connection to FS" message in FSShell should print
|
HADOOP-6627. "Bad Connection to FS" message in FSShell should print
|
||||||
message from the exception (boryas)
|
message from the exception (boryas)
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ public class ProxyUsers {
|
|||||||
* @return configuration key for superuser groups
|
* @return configuration key for superuser groups
|
||||||
*/
|
*/
|
||||||
public static String getProxySuperuserGroupConfKey(String userName) {
|
public static String getProxySuperuserGroupConfKey(String userName) {
|
||||||
return "hadoop.proxyuser."+userName+".users";
|
return "hadoop.proxyuser."+userName+".groups";
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -46,7 +46,7 @@ public static String getProxySuperuserGroupConfKey(String userName) {
|
|||||||
* @return configuration key for superuser ip-addresses
|
* @return configuration key for superuser ip-addresses
|
||||||
*/
|
*/
|
||||||
public static String getProxySuperuserIpConfKey(String userName) {
|
public static String getProxySuperuserIpConfKey(String userName) {
|
||||||
return "hadoop.proxyuser."+userName+".ip-addresses";
|
return "hadoop.proxyuser."+userName+".hosts";
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user