You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ap...@apache.org on 2019/06/10 19:16:03 UTC

[hbase] 02/02: HBASE-18813 TestCanaryTool fails on branch-1 / branch-1.4

This is an automated email from the ASF dual-hosted git repository.

apurtell pushed a commit to branch branch-1.3
in repository https://gitbox.apache.org/repos/asf/hbase.git

commit d1c499829c31eea1f617cc42aa9b2042fe015bd9
Author: Andrew Purtell <ap...@apache.org>
AuthorDate: Mon Jun 10 12:16:10 2019 -0700

    HBASE-18813 TestCanaryTool fails on branch-1 / branch-1.4
    
    Committed the addendum that disables units where argument matching is intermittently failing
---
 .../src/test/java/org/apache/hadoop/hbase/tool/TestCanaryTool.java     | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/tool/TestCanaryTool.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/tool/TestCanaryTool.java
index 8654a51..aa76c85 100644
--- a/hbase-server/src/test/java/org/apache/hadoop/hbase/tool/TestCanaryTool.java
+++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/tool/TestCanaryTool.java
@@ -39,6 +39,7 @@ import org.apache.log4j.spi.LoggingEvent;
 
 import org.junit.After;
 import org.junit.Before;
+import org.junit.Ignore;
 import org.junit.Test;
 import org.junit.experimental.categories.Category;
 import org.junit.runner.RunWith;
@@ -115,6 +116,7 @@ public class TestCanaryTool {
   }
 
   @Test
+  @Ignore("Intermittent argument matching failures, see HBASE-18813")
   public void testReadTableTimeouts() throws Exception {
     final TableName [] tableNames = new TableName[2];
     tableNames[0] = TableName.valueOf("testReadTableTimeouts1");
@@ -158,6 +160,7 @@ public class TestCanaryTool {
   }
 
   @Test
+  @Ignore("Intermittent argument matching failures, see HBASE-18813")
   public void testWriteTableTimeout() throws Exception {
     ExecutorService executor = new ScheduledThreadPoolExecutor(1);
     Canary.RegionStdOutSink sink = spy(new Canary.RegionStdOutSink());