HDFS-5432. TestDatanodeJsp fails on Windows due to assumption that loopback address resolves to host name localhost. Contributed by Chris Nauroth.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1537230 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
75a162ff92
commit
9c29b86cab
|
@ -568,6 +568,9 @@ Release 2.2.1 - UNRELEASED
|
||||||
HDFS-5433. When reloading fsimage during checkpointing, we should clear
|
HDFS-5433. When reloading fsimage during checkpointing, we should clear
|
||||||
existing snapshottable directories. (Aaron T. Myers via wang)
|
existing snapshottable directories. (Aaron T. Myers via wang)
|
||||||
|
|
||||||
|
HDFS-5432. TestDatanodeJsp fails on Windows due to assumption that loopback
|
||||||
|
address resolves to host name localhost. (cnauroth)
|
||||||
|
|
||||||
Release 2.2.0 - 2013-10-13
|
Release 2.2.0 - 2013-10-13
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -88,7 +88,8 @@ public class TestDatanodeJsp {
|
||||||
regex = "<a.+href=\"(.+?)\">Go\\s*Back\\s*to\\s*File\\s*View\\<\\/a\\>";
|
regex = "<a.+href=\"(.+?)\">Go\\s*Back\\s*to\\s*File\\s*View\\<\\/a\\>";
|
||||||
assertFileContents(regex, "Go Back to File View");
|
assertFileContents(regex, "Go Back to File View");
|
||||||
|
|
||||||
regex = "<a href=\"///localhost:" + nnHttpAddress.getPort() + "/dfshealth.jsp\">Go back to DFS home</a>";
|
regex = "<a href=\"///" + nnHttpAddress.getHostName() + ":" +
|
||||||
|
nnHttpAddress.getPort() + "/dfshealth.jsp\">Go back to DFS home</a>";
|
||||||
assertTrue("page should generate DFS home scheme without explicit scheme", viewFilePage.contains(regex));
|
assertTrue("page should generate DFS home scheme without explicit scheme", viewFilePage.contains(regex));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue