Skip to content

Commit

Permalink
Fixes #11581 - Flaky WebSocketOverHTTP2Test.testWebSocketOverDynamicH…
Browse files Browse the repository at this point in the history
…TTP2()

Marked the test as flaky, actual resolution needs resolving #12235.

Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
  • Loading branch information
sbordet committed Sep 5, 2024
1 parent 899c005 commit c2519bb
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@
import org.eclipse.jetty.websocket.client.WebSocketClient;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.OS;
Expand Down Expand Up @@ -169,6 +170,7 @@ public void testWebSocketOverDynamicHTTP1() throws Exception
}

@Test
@Tag("flaky") // See analysis in #12235.
public void testWebSocketOverDynamicHTTP2() throws Exception
{
testWebSocketOverDynamicTransport(clientConnector -> new ClientConnectionFactoryOverHTTP2.HTTP2(new HTTP2Client(clientConnector)));
Expand Down

0 comments on commit c2519bb

Please sign in to comment.