HDFS-7236. Fix TestOpenFilesWithSnapshot#testOpenFilesWithMultipleSnapshots. Contributed by Yongjun Zhang.
This commit is contained in:
parent
942fb67a04
commit
715f222a80
|
@ -588,6 +588,9 @@ Release 2.6.0 - UNRELEASED
|
|||
HDFS-7203. Concurrent appending to the same file can cause data corruption
|
||||
(kihwal)
|
||||
|
||||
HDFS-7236. Fix TestOpenFilesWithSnapshot#testOpenFilesWithMultipleSnapshots.
|
||||
(Yongjun Zhang via jing9)
|
||||
|
||||
BREAKDOWN OF HDFS-6134 AND HADOOP-10150 SUBTASKS AND RELATED JIRAS
|
||||
|
||||
HDFS-6387. HDFS CLI admin tool for creating & deleting an
|
||||
|
|
|
@ -175,6 +175,7 @@ public class TestOpenFilesWithSnapshot {
|
|||
fs.createSnapshot(path, "s2");
|
||||
fs.delete(new Path("/test/test"), true);
|
||||
fs.deleteSnapshot(path, "s2");
|
||||
cluster.triggerBlockReports();
|
||||
if (saveNamespace) {
|
||||
NameNode nameNode = cluster.getNameNode();
|
||||
NameNodeAdapter.enterSafeMode(nameNode, false);
|
||||
|
|
Loading…
Reference in New Issue