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:58 UTC

[hbase] branch branch-2.3 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.3
in repository https://gitbox.apache.org/repos/asf/hbase.git


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

commit ec3558d7f5021941f876795fd86970e81865d902
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()) {