From 39f6a4eb0b27bf16d3c9ea98b3f5e8db8c594e78 Mon Sep 17 00:00:00 2001 From: stack Date: Sun, 18 Oct 2015 20:17:01 -0700 Subject: [PATCH] HBASE-14642 Disable flakey TestMultiParallel#testActiveThreadsCount --- .../java/org/apache/hadoop/hbase/client/TestMultiParallel.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestMultiParallel.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestMultiParallel.java index a31085ff3cb..0469bca4168 100644 --- a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestMultiParallel.java +++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestMultiParallel.java @@ -48,6 +48,7 @@ import org.junit.AfterClass; import org.junit.Assert; import org.junit.Before; import org.junit.BeforeClass; +import org.junit.Ignore; import org.junit.Test; import org.junit.experimental.categories.Category; @@ -142,7 +143,7 @@ public class TestMultiParallel { * @throws NoSuchFieldException * @throws SecurityException */ - @Test(timeout=300000) + @Ignore ("Nice bug flakey... expected 5 but was 4..") @Test(timeout=300000) public void testActiveThreadsCount() throws Exception { try (Connection connection = ConnectionFactory.createConnection(UTIL.getConfiguration())) { ThreadPoolExecutor executor = HTable.getDefaultExecutor(UTIL.getConfiguration());