Upgrade to Netty 4.1.52.Final

Closes gh-23287
This commit is contained in:
Stephane Nicoll
2020-09-14 13:12:11 +02:00
parent a9f1441fcc
commit f4a84d3b63
2 changed files with 6 additions and 2 deletions

View File

@@ -257,7 +257,11 @@ public abstract class AbstractReactiveWebServerFactoryTests {
Mono<String> result = client.post().uri("/test").contentType(MediaType.TEXT_PLAIN)
.body(BodyInserters.fromValue("Hello World")).exchange()
.flatMap((response) -> response.bodyToMono(String.class));
StepVerifier.create(result).expectError(SSLException.class).verify(Duration.ofSeconds(10));
StepVerifier.create(result).expectErrorSatisfies((exception) -> {
if (!(exception instanceof SSLException)) {
assertThat(exception).hasCauseInstanceOf(SSLException.class);
}
}).verify(Duration.ofSeconds(10));
}
protected WebClient.Builder getWebClient() {