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/27 01:43:52 UTC

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


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

commit 5af807153a2dbf1e0dad8a3029f241eff3e87529
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);