HDFS-9128. TestWebHdfsFileContextMainOperations and TestSWebHdfsFileContextMainOperations fail due to invalid HDFS path on Windows. Contributed by Chris Nauroth.
This commit is contained in:
parent
0ef7ff47d5
commit
06d1c9033e
|
@ -1390,6 +1390,10 @@ Release 2.8.0 - UNRELEASED
|
||||||
HDFS-9013. Deprecate NameNodeMXBean#getNNStarted in branch2 and remove from
|
HDFS-9013. Deprecate NameNodeMXBean#getNNStarted in branch2 and remove from
|
||||||
trunk (Surendra Singh Lilhore via vinayakumarb)
|
trunk (Surendra Singh Lilhore via vinayakumarb)
|
||||||
|
|
||||||
|
HDFS-9128. TestWebHdfsFileContextMainOperations and
|
||||||
|
TestSWebHdfsFileContextMainOperations fail due to invalid HDFS path on
|
||||||
|
Windows. (Chris Nauroth via wheat9)
|
||||||
|
|
||||||
Release 2.7.2 - UNRELEASED
|
Release 2.7.2 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -93,6 +93,11 @@ public class TestSWebHdfsFileContextMainOperations
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected FileContextTestHelper createFileContextHelper() {
|
||||||
|
return new FileContextTestHelper("/tmp/TestSWebHdfsFileContextMainOperations");
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public URI getWebhdfsUrl() {
|
public URI getWebhdfsUrl() {
|
||||||
return webhdfsUrl;
|
return webhdfsUrl;
|
||||||
|
|
|
@ -61,6 +61,11 @@ public class TestWebHdfsFileContextMainOperations
|
||||||
return defaultWorkingDirectory;
|
return defaultWorkingDirectory;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected FileContextTestHelper createFileContextHelper() {
|
||||||
|
return new FileContextTestHelper("/tmp/TestWebHdfsFileContextMainOperations");
|
||||||
|
}
|
||||||
|
|
||||||
public URI getWebhdfsUrl() {
|
public URI getWebhdfsUrl() {
|
||||||
return webhdfsUrl;
|
return webhdfsUrl;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue