HADOOP-10664. TestNetUtils.testNormalizeHostName fails. Contributed by Aaron T. Myers.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1601478 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a72f850e33
commit
d4b9a04840
@ -536,6 +536,8 @@ Release 2.5.0 - UNRELEASED
|
||||
HADOOP-10647. String Format Exception in SwiftNativeFileSystemStore.java.
|
||||
(Gene Kim via stevel)
|
||||
|
||||
HADOOP-10664. TestNetUtils.testNormalizeHostName fails. (atm)
|
||||
|
||||
Release 2.4.1 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user