Explorar el Código

HDFS-2043. TestHFlush failing intermittently. Contributed by Lin Yiqun.

(cherry picked from commit 2835f146b551f911ea13307e7762759813898757)
Masatake Iwasaki hace 9 años
padre
commit
4ecbe2e9bf

+ 8 - 2
hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestHFlush.java

@@ -485,8 +485,14 @@ public class TestHFlush {
         // If we got the exception, we shouldn't have interrupted status anymore.
         assertFalse(Thread.interrupted());
 
-        // Now do a successful close.
-        stm.close();
+        // Do the try-catch in the second stm.close() avoid that streamer was already
+        // closed in other places.
+        try {
+          // Now do a successful close.
+          stm.close();
+        } catch (IOException e) {
+          System.out.println("Got expected exception during second close");
+        }
       }