Merge branch '6.2.x'

This commit is contained in:
Brian Clozel 2024-11-18 11:57:43 +01:00
commit 409bf5f889
3 changed files with 11 additions and 0 deletions

View File

@ -83,6 +83,10 @@ import org.springframework.util.StringUtils;
* over the old instance's {@code entrySet()} and using
* {@link #addAll(String, List)} rather than {@link #put(String, List)}.
*
* <p>This class is meant to reference "well-known" headers supported by Spring
* Framework. If your application or library relies on other headers defined in RFCs,
* please use methods that accept the header name as a parameter.
*
* @author Arjen Poutsma
* @author Sebastien Deleuze
* @author Brian Clozel

View File

@ -39,6 +39,10 @@ import org.springframework.util.StringUtils;
* A subclass of {@link MimeType} that adds support for quality parameters
* as defined in the HTTP specification.
*
* <p>This class is meant to reference media types supported by Spring Framework.
* If your application or library relies on other media types defined in RFCs,
* please use {@link #parseMediaType(String)} or a custom utility class.
*
* @author Arjen Poutsma
* @author Juergen Hoeller
* @author Rossen Stoyanchev

View File

@ -83,6 +83,7 @@ import org.springframework.web.reactive.function.client.WebClient.ResponseSpec;
import org.springframework.web.testfixture.xml.Pojo;
import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.jupiter.api.Assumptions.assumeFalse;
import static org.junit.jupiter.params.provider.Arguments.argumentSet;
/**
@ -192,6 +193,8 @@ class WebClientIntegrationTests {
@ParameterizedWebClientTest
void applyAttributesToNativeRequest(ClientHttpConnector connector) {
assumeFalse(connector instanceof ReactorClientHttpConnector,
"Temporarily disabling flaky test for Reactor Netty");
startServer(connector);
prepareResponse(response -> {});