You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tr...@apache.org on 2018/09/28 09:33:55 UTC

[flink] 05/05: [hotfix] Ignore RestClientTest#testRestClientCloseHandling because of Netty bug

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

trohrmann pushed a commit to branch release-1.5
in repository https://gitbox.apache.org/repos/asf/flink.git

commit 91dbb9c11724ef0b328c4e9bd25dc620d4dae060
Author: Till Rohrmann <tr...@apache.org>
AuthorDate: Fri Sep 28 11:32:16 2018 +0200

    [hotfix] Ignore RestClientTest#testRestClientCloseHandling because of Netty bug
---
 .../src/test/java/org/apache/flink/runtime/rest/RestClientTest.java     | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/flink-runtime/src/test/java/org/apache/flink/runtime/rest/RestClientTest.java b/flink-runtime/src/test/java/org/apache/flink/runtime/rest/RestClientTest.java
index f670bec..3d5a5bd 100644
--- a/flink-runtime/src/test/java/org/apache/flink/runtime/rest/RestClientTest.java
+++ b/flink-runtime/src/test/java/org/apache/flink/runtime/rest/RestClientTest.java
@@ -33,6 +33,7 @@ import org.apache.flink.util.function.CheckedSupplier;
 import org.apache.flink.shaded.netty4.io.netty.channel.ConnectTimeoutException;
 import org.apache.flink.shaded.netty4.io.netty.handler.codec.http.HttpResponseStatus;
 
+import org.junit.Ignore;
 import org.junit.Test;
 
 import java.io.IOException;
@@ -127,6 +128,7 @@ public class RestClientTest extends TestLogger {
 	/**
 	 * Tests that we fail the operation if the client closes.
 	 */
+	@Ignore("Ignored due to https://github.com/netty/netty/issues/3662")
 	@Test
 	public void testRestClientClosedHandling() throws Exception {
 		final Configuration config = new Configuration();