HBASE-24264 Disable TestNettyIPC.testHedgedAsyncEcho (#1589)

This commit is contained in:
Duo Zhang 2020-04-26 23:36:07 +08:00 committed by GitHub
parent ec0d9d767e
commit 84f2e95dd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

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