Skip to content

Commit a2f7ce0

Browse files
committed
Merge branch '2.2.x' into 2.3.x
Closes gh-22102
2 parents 72f37c4 + 5475f10 commit a2f7ce0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/web/test/WebEndpointTestInvocationContextProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ private WebTestClient createWebTestClient() {
194194
"http://localhost:" + determinePort());
195195
uriBuilderFactory.setEncodingMode(EncodingMode.NONE);
196196
return WebTestClient.bindToServer().uriBuilderFactory(uriBuilderFactory).responseTimeout(TIMEOUT)
197-
.filter((request, next) -> {
197+
.codecs((codecs) -> codecs.defaultCodecs().maxInMemorySize(-1)).filter((request, next) -> {
198198
if (HttpMethod.GET == request.method()) {
199199
return next.exchange(request).retry(10);
200200
}

0 commit comments

Comments
 (0)