Merge branch '6.2.x'
This commit is contained in:
commit
409bf5f889
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 -> {});
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue