瀏覽代碼

HADOOP-14472. Azure: TestReadAndSeekPageBlobAfterWrite fails intermittently. Contributed by Mingliang Liu

Mingliang Liu 8 年之前
父節點
當前提交
6b5285bbcb

+ 0 - 10
hadoop-tools/hadoop-azure/src/test/java/org/apache/hadoop/fs/azure/TestReadAndSeekPageBlobAfterWrite.java

@@ -275,18 +275,8 @@ public class TestReadAndSeekPageBlobAfterWrite {
         writesSinceHFlush++;
         output.flush();
         if ((i % SYNC_INTERVAL) == 0) {
-          long start = Time.monotonicNow();
           output.hflush();
           writesSinceHFlush = 0;
-          long end = Time.monotonicNow();
-
-          // A true, round-trip synchronous flush to Azure must take
-          // a significant amount of time or we are not syncing to storage correctly.
-          LOG.debug("hflush duration = " + (end - start) + " msec.");
-          assertTrue(String.format(
-            "hflush duration of %d, less than minimum expected of %d",
-            end - start, MINIMUM_EXPECTED_TIME),
-            end - start >= MINIMUM_EXPECTED_TIME);
         }
       }
     } finally {