Commit a2f7ce05 authored by Andy Wilkinson's avatar Andy Wilkinson

Merge branch '2.2.x' into 2.3.x

Closes gh-22102
parents 72f37c41 5475f106
...@@ -194,7 +194,7 @@ class WebEndpointTestInvocationContextProvider implements TestTemplateInvocation ...@@ -194,7 +194,7 @@ class WebEndpointTestInvocationContextProvider implements TestTemplateInvocation
"http://localhost:" + determinePort()); "http://localhost:" + determinePort());
uriBuilderFactory.setEncodingMode(EncodingMode.NONE); uriBuilderFactory.setEncodingMode(EncodingMode.NONE);
return WebTestClient.bindToServer().uriBuilderFactory(uriBuilderFactory).responseTimeout(TIMEOUT) return WebTestClient.bindToServer().uriBuilderFactory(uriBuilderFactory).responseTimeout(TIMEOUT)
.filter((request, next) -> { .codecs((codecs) -> codecs.defaultCodecs().maxInMemorySize(-1)).filter((request, next) -> {
if (HttpMethod.GET == request.method()) { if (HttpMethod.GET == request.method()) {
return next.exchange(request).retry(10); return next.exchange(request).retry(10);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment