From 321a44810783fcc978744ba2a592ff8f30b41c5b Mon Sep 17 00:00:00 2001 From: John Gardiner Myers Date: Sat, 22 Feb 2025 16:22:36 -0800 Subject: [PATCH] Disable test that is flaky under HTTP/2 TLS --- .../http/client/jetty/TestJettyHttpsClientHttp2.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/http-client/src/test/java/com/proofpoint/http/client/jetty/TestJettyHttpsClientHttp2.java b/http-client/src/test/java/com/proofpoint/http/client/jetty/TestJettyHttpsClientHttp2.java index 20112ef7a..980c634ae 100644 --- a/http-client/src/test/java/com/proofpoint/http/client/jetty/TestJettyHttpsClientHttp2.java +++ b/http-client/src/test/java/com/proofpoint/http/client/jetty/TestJettyHttpsClientHttp2.java @@ -2,7 +2,7 @@ import com.proofpoint.http.client.HttpClientConfig; import org.testng.SkipException; -import org.testng.annotations.BeforeMethod; +import org.testng.annotations.Test; public class TestJettyHttpsClientHttp2 extends TestJettyHttpsClient @@ -13,4 +13,12 @@ protected HttpClientConfig createClientConfig() return super.createClientConfig() .setHttp2Enabled(true); } + + @Override + @Test + public void testConnectReadRequestClose() + { + throw new SkipException("Would need to extend FakeServer to process more HTTP/2 protocol"); + } + }