HADOOP-10664. TestNetUtils.testNormalizeHostName fails. Contributed by Aaron T. Myers.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1601483 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Aaron Myers 2014-06-09 19:03:37 +00:00
parent d3473f1e20
commit d156c785a6
2 changed files with 4 additions and 2 deletions

View File

@ -186,6 +186,8 @@ Release 2.5.0 - UNRELEASED
HADOOP-9099. NetUtils.normalizeHostName fails on domains where
UnknownHost resolves to an IP address. (Ivan Mitic via suresh)
HADOOP-10664. TestNetUtils.testNormalizeHostName fails. (atm)
Release 2.4.1 - UNRELEASED
INCOMPATIBLE CHANGES

View File

@ -605,7 +605,7 @@ public void testCanonicalUriWithNoPortNoDefaultPort() {
@Test
public void testNormalizeHostName() {
List<String> hosts = Arrays.asList(new String[] {"127.0.0.1",
"localhost", "3w.org", "UnknownHost123"});
"localhost", "1.kanyezone.appspot.com", "UnknownHost123"});
List<String> normalizedHosts = NetUtils.normalizeHostNames(hosts);
// when ipaddress is normalized, same address is expected in return
assertEquals(normalizedHosts.get(0), hosts.get(0));
@ -636,4 +636,4 @@ private <T> void assertBetterArrayEquals(T[] expect, T[]got) {
String gotStr = StringUtils.join(got, ", ");
assertEquals(expectStr, gotStr);
}
}
}