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 2017/09/15 17:42:21 UTC

[4/4] hbase git commit: Amend HBASE-18813 TestCanaryTool fails on branch-1 / branch-1.4

Amend HBASE-18813 TestCanaryTool fails on branch-1 / branch-1.4

Disable units where argument matching is intermittently failing


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/f54c06f4
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/f54c06f4
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/f54c06f4

Branch: refs/heads/branch-1.4
Commit: f54c06f492c791882e65e10f7c6f9f995027357e
Parents: 31b9096
Author: Andrew Purtell <ap...@apache.org>
Authored: Fri Sep 15 10:24:05 2017 -0700
Committer: Andrew Purtell <ap...@apache.org>
Committed: Fri Sep 15 10:42:09 2017 -0700

----------------------------------------------------------------------
 .../test/java/org/apache/hadoop/hbase/tool/TestCanaryTool.java    | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/f54c06f4/hbase-server/src/test/java/org/apache/hadoop/hbase/tool/TestCanaryTool.java
----------------------------------------------------------------------
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 f186281..0204582 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
@@ -37,6 +37,7 @@ import org.apache.log4j.spi.LoggingEvent;
 import com.google.common.collect.Iterables;
 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;
@@ -119,6 +120,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");
@@ -162,6 +164,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());