HDFS-6789. TestDFSClientFailover.testFileContextDoesntDnsResolveLogicalURI and TestDFSClientFailover.testDoesntDnsResolveLogicalURI failing on jdk7. Contributed by Akira Ajisaka.
(cherry picked from commit a044407b5c
)
This commit is contained in:
parent
23f34b75e4
commit
fcd181bde1
|
@ -405,6 +405,10 @@ Release 2.6.0 - UNRELEASED
|
||||||
HDFS-6965. NN continues to issue block locations for DNs with full disks.
|
HDFS-6965. NN continues to issue block locations for DNs with full disks.
|
||||||
(Rushabh Shah via kihwal)
|
(Rushabh Shah via kihwal)
|
||||||
|
|
||||||
|
HDFS-6789. TestDFSClientFailover.testFileContextDoesntDnsResolveLogicalURI
|
||||||
|
and TestDFSClientFailover.testDoesntDnsResolveLogicalURI failing on jdk7.
|
||||||
|
(Akira Ajisaka via wang)
|
||||||
|
|
||||||
BREAKDOWN OF HDFS-6134 AND HADOOP-10150 SUBTASKS AND RELATED JIRAS
|
BREAKDOWN OF HDFS-6134 AND HADOOP-10150 SUBTASKS AND RELATED JIRAS
|
||||||
|
|
||||||
HDFS-6387. HDFS CLI admin tool for creating & deleting an
|
HDFS-6387. HDFS CLI admin tool for creating & deleting an
|
||||||
|
|
|
@ -257,9 +257,8 @@ public class TestDFSClientFailover {
|
||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
public void testDoesntDnsResolveLogicalURI() throws Exception {
|
public void testDoesntDnsResolveLogicalURI() throws Exception {
|
||||||
NameService spyNS = spyOnNameService();
|
|
||||||
|
|
||||||
FileSystem fs = HATestUtil.configureFailoverFs(cluster, conf);
|
FileSystem fs = HATestUtil.configureFailoverFs(cluster, conf);
|
||||||
|
NameService spyNS = spyOnNameService();
|
||||||
String logicalHost = fs.getUri().getHost();
|
String logicalHost = fs.getUri().getHost();
|
||||||
Path qualifiedRoot = fs.makeQualified(new Path("/"));
|
Path qualifiedRoot = fs.makeQualified(new Path("/"));
|
||||||
|
|
||||||
|
@ -276,8 +275,8 @@ public class TestDFSClientFailover {
|
||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
public void testFileContextDoesntDnsResolveLogicalURI() throws Exception {
|
public void testFileContextDoesntDnsResolveLogicalURI() throws Exception {
|
||||||
NameService spyNS = spyOnNameService();
|
|
||||||
FileSystem fs = HATestUtil.configureFailoverFs(cluster, conf);
|
FileSystem fs = HATestUtil.configureFailoverFs(cluster, conf);
|
||||||
|
NameService spyNS = spyOnNameService();
|
||||||
String logicalHost = fs.getUri().getHost();
|
String logicalHost = fs.getUri().getHost();
|
||||||
Configuration haClientConf = fs.getConf();
|
Configuration haClientConf = fs.getConf();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue