Skip to content

Commit 24cfc53

Browse files
committed
Fix WebFluxDslTests for reply size limitation
1 parent 7be382e commit 24cfc53

File tree

1 file changed

+3
-0
lines changed
  • spring-integration-webflux/src/test/java/org/springframework/integration/webflux/dsl

1 file changed

+3
-0
lines changed

spring-integration-webflux/src/test/java/org/springframework/integration/webflux/dsl/WebFluxDslTests.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,9 @@ public void setup() {
139139
.apply(SecurityMockServerConfigurers.springSecurity())
140140
.configureClient()
141141
.responseTimeout(Duration.ofSeconds(10))
142+
.codecs(clientCodecConfigurer -> clientCodecConfigurer
143+
.defaultCodecs()
144+
.maxInMemorySize(1024 * 1024))
142145
.build();
143146
}
144147

0 commit comments

Comments
 (0)