From 7b087d1a6ca97c81c0ebe0ea0efdad7bcabe9962 Mon Sep 17 00:00:00 2001 From: Sam Brannen <104798+sbrannen@users.noreply.github.com> Date: Thu, 2 Apr 2026 17:20:38 +0200 Subject: [PATCH] Disable flaky reactorNettyAttributes() test in WebClientIntegrationTests See gh-36589 --- .../web/reactive/function/client/WebClientIntegrationTests.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spring-webflux/src/test/java/org/springframework/web/reactive/function/client/WebClientIntegrationTests.java b/spring-webflux/src/test/java/org/springframework/web/reactive/function/client/WebClientIntegrationTests.java index 3c754453d5e..2e40a36c1fc 100644 --- a/spring-webflux/src/test/java/org/springframework/web/reactive/function/client/WebClientIntegrationTests.java +++ b/spring-webflux/src/test/java/org/springframework/web/reactive/function/client/WebClientIntegrationTests.java @@ -46,6 +46,7 @@ import mockwebserver3.MockWebServer; import mockwebserver3.RecordedRequest; import org.eclipse.jetty.client.Request; import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.Arguments; @@ -1322,6 +1323,7 @@ class WebClientIntegrationTests { .verify(Duration.ofSeconds(3)); } + @Disabled("Disabled because it's flaky (gh-36589)") @Test // gh-36158 void reactorNettyAttributes() throws IOException { startServer(new ReactorClientHttpConnector());