HADOOP-9847. TestGlobPath symlink tests fail to cleanup properly. (cmccabe via wang)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1513255 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
086934cd59
commit
d8a025bb28
|
@ -299,6 +299,9 @@ Release 2.1.0-beta - 2013-08-06
|
||||||
HADOOP-9786. RetryInvocationHandler#isRpcInvocation should support
|
HADOOP-9786. RetryInvocationHandler#isRpcInvocation should support
|
||||||
ProtocolTranslator. (suresh and jing9)
|
ProtocolTranslator. (suresh and jing9)
|
||||||
|
|
||||||
|
HADOOP-9847. TestGlobPath symlink tests fail to cleanup properly.
|
||||||
|
(cmccabe via wang)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
HADOOP-9150. Avoid unnecessary DNS resolution attempts for logical URIs
|
HADOOP-9150. Avoid unnecessary DNS resolution attempts for logical URIs
|
||||||
|
|
|
@ -405,6 +405,8 @@ public class TestGlobPaths {
|
||||||
|
|
||||||
status = fs.globStatus(new Path("/x/x"), falseFilter);
|
status = fs.globStatus(new Path("/x/x"), falseFilter);
|
||||||
assertNull(status);
|
assertNull(status);
|
||||||
|
|
||||||
|
cleanupDFS();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void checkStatus(FileStatus[] status, Path ... expectedMatches) {
|
private void checkStatus(FileStatus[] status, Path ... expectedMatches) {
|
||||||
|
@ -783,8 +785,7 @@ public class TestGlobPaths {
|
||||||
return globResults;
|
return globResults;
|
||||||
}
|
}
|
||||||
|
|
||||||
@After
|
private void cleanupDFS() throws IOException {
|
||||||
public void cleanupDFS() throws IOException {
|
|
||||||
fs.delete(new Path(USER_DIR), true);
|
fs.delete(new Path(USER_DIR), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue