You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zh...@apache.org on 2020/04/26 15:36:20 UTC

[hbase] branch master updated: HBASE-24264 Disable TestNettyIPC.testHedgedAsyncEcho (#1589)

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

zhangduo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/master by this push:
     new 84f2e95  HBASE-24264 Disable TestNettyIPC.testHedgedAsyncEcho (#1589)
84f2e95 is described below

commit 84f2e95dd5c58d76ef66613229011ffba9fe59e2
Author: Duo Zhang <zh...@apache.org>
AuthorDate: Sun Apr 26 23:36:07 2020 +0800

    HBASE-24264 Disable TestNettyIPC.testHedgedAsyncEcho (#1589)
---
 .../src/test/java/org/apache/hadoop/hbase/ipc/AbstractTestIPC.java      | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/ipc/AbstractTestIPC.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/ipc/AbstractTestIPC.java
index f555f4b..c3bf1c2 100644
--- a/hbase-server/src/test/java/org/apache/hadoop/hbase/ipc/AbstractTestIPC.java
+++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/ipc/AbstractTestIPC.java
@@ -49,6 +49,7 @@ import org.apache.hadoop.hbase.util.Bytes;
 import org.apache.hadoop.io.compress.GzipCodec;
 import org.apache.hadoop.util.StringUtils;
 import org.junit.Assume;
+import org.junit.Ignore;
 import org.junit.Test;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
@@ -371,6 +372,7 @@ public abstract class AbstractTestIPC {
    * failing servers.
    */
   @Test
+  @Ignore
   public void testHedgedAsyncEcho() throws Exception {
     // Hedging is not supported for blocking connection types.
     Assume.assumeFalse(this instanceof TestBlockingIPC);