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 2021/12/07 03:07:59 UTC

[hbase] branch branch-2.4 updated: HBASE-24870 Ignore TestAsyncTableRSCrashPublish (#2248)

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

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


The following commit(s) were added to refs/heads/branch-2.4 by this push:
     new 17750a7  HBASE-24870 Ignore TestAsyncTableRSCrashPublish (#2248)
17750a7 is described below

commit 17750a72f5d098f75057b794688e4c3779fbde2d
Author: Guanghao Zhang <zg...@apache.org>
AuthorDate: Fri Aug 14 09:31:20 2020 +0800

    HBASE-24870 Ignore TestAsyncTableRSCrashPublish (#2248)
    
    Signed-off-by: meiyi <my...@gmail.com>
---
 .../org/apache/hadoop/hbase/client/TestAsyncTableRSCrashPublish.java   | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAsyncTableRSCrashPublish.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAsyncTableRSCrashPublish.java
index 461bf1b..c2c6d26 100644
--- a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAsyncTableRSCrashPublish.java
+++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAsyncTableRSCrashPublish.java
@@ -32,6 +32,7 @@ import org.apache.hadoop.hbase.util.Bytes;
 import org.junit.AfterClass;
 import org.junit.BeforeClass;
 import org.junit.ClassRule;
+import org.junit.Ignore;
 import org.junit.Test;
 import org.junit.experimental.categories.Category;
 
@@ -80,7 +81,7 @@ public class TestAsyncTableRSCrashPublish {
     UTIL.shutdownMiniCluster();
   }
 
-  @Test
+  @Ignore @Test
   public void test() throws IOException, ExecutionException, InterruptedException {
     Configuration conf = UTIL.getHBaseCluster().getMaster().getConfiguration();
     try (AsyncConnection connection = ConnectionFactory.createAsyncConnection(conf).get()) {