HADOOP-8917. add LOCALE.US to toLowerCase in SecurityUtil.replacePattern. Contributed by Arpit Agarwal.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1450571 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
70b1c5ca75
commit
9e87bcb3ad
|
@ -392,6 +392,9 @@ Release 2.0.4-beta - UNRELEASED
|
|||
HADOOP-7487. DF should throw a more reasonable exception when mount cannot
|
||||
be determined. (Andrew Wang via atm)
|
||||
|
||||
HADOOP-8917. add LOCALE.US to toLowerCase in SecurityUtil.replacePattern.
|
||||
(Arpit Agarwal via suresh)
|
||||
|
||||
Release 2.0.3-alpha - 2013-02-06
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -30,6 +30,7 @@ import java.security.PrivilegedAction;
|
|||
import java.security.PrivilegedExceptionAction;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.Locale;
|
||||
import java.util.ServiceLoader;
|
||||
import java.util.Set;
|
||||
|
||||
|
@ -219,7 +220,7 @@ public class SecurityUtil {
|
|||
if (fqdn == null || fqdn.isEmpty() || fqdn.equals("0.0.0.0")) {
|
||||
fqdn = getLocalHostName();
|
||||
}
|
||||
return components[0] + "/" + fqdn.toLowerCase() + "@" + components[2];
|
||||
return components[0] + "/" + fqdn.toLowerCase(Locale.US) + "@" + components[2];
|
||||
}
|
||||
|
||||
static String getLocalHostName() throws UnknownHostException {
|
||||
|
|
Loading…
Reference in New Issue