File tree 3 files changed +11
-0
lines changed
spring-web/src/main/java/org/springframework/http
spring-webflux/src/test/java/org/springframework/web/reactive/function/client
3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 83
83
* over the old instance's {@code entrySet()} and using
84
84
* {@link #addAll(String, List)} rather than {@link #put(String, List)}.
85
85
*
86
+ * <p>This class is meant to reference "well-known" headers supported by Spring
87
+ * Framework. If your application or library relies on other headers defined in RFCs,
88
+ * please use methods that accept the header name as a parameter.
89
+ *
86
90
* @author Arjen Poutsma
87
91
* @author Sebastien Deleuze
88
92
* @author Brian Clozel
Original file line number Diff line number Diff line change 39
39
* A subclass of {@link MimeType} that adds support for quality parameters
40
40
* as defined in the HTTP specification.
41
41
*
42
+ * <p>This class is meant to reference media types supported by Spring Framework.
43
+ * If your application or library relies on other media types defined in RFCs,
44
+ * please use {@link #parseMediaType(String)} or a custom utility class.
45
+ *
42
46
* @author Arjen Poutsma
43
47
* @author Juergen Hoeller
44
48
* @author Rossen Stoyanchev
Original file line number Diff line number Diff line change 83
83
import org .springframework .web .testfixture .xml .Pojo ;
84
84
85
85
import static org .assertj .core .api .Assertions .assertThat ;
86
+ import static org .junit .jupiter .api .Assumptions .assumeFalse ;
86
87
import static org .junit .jupiter .params .provider .Arguments .argumentSet ;
87
88
88
89
/**
@@ -192,6 +193,8 @@ void retrieveJson(ClientHttpConnector connector) {
192
193
193
194
@ ParameterizedWebClientTest
194
195
void applyAttributesToNativeRequest (ClientHttpConnector connector ) {
196
+ assumeFalse (connector instanceof ReactorClientHttpConnector ,
197
+ "Temporarily disabling flaky test for Reactor Netty" );
195
198
startServer (connector );
196
199
prepareResponse (response -> {});
197
200
You can’t perform that action at this time.
0 commit comments