Merge branch '5.3.x' into main

This commit is contained in:
Rossen Stoyanchev
2021-12-02 12:35:48 +00:00
3 changed files with 15 additions and 12 deletions

View File

@@ -530,7 +530,7 @@ public interface WebClient {
* return response.bodyToMono(ErrorContainer.class);
* }
* else {
* return Mono.error(response.createException());
* return response.createException();
* }
* });
* </pre>
@@ -562,7 +562,7 @@ public interface WebClient {
* return response.bodyToMono(ErrorContainer.class).flux();
* }
* else {
* return Flux.error(response.createException());
* return response.createException().flux();
* }
* });
* </pre>