Fix NoHttp violation

This commit is contained in:
Sam Brannen 2020-03-20 19:43:00 +01:00
parent 90268de9c0
commit 331b14bb0b
1 changed files with 1 additions and 1 deletions

View File

@ -664,7 +664,7 @@ public interface WebClient {
* downstream, for example: * downstream, for example:
* <pre class="code"> * <pre class="code">
* webClient.get() * webClient.get()
* .uri("http://abc.com/account/123") * .uri("https://abc.com/account/123")
* .retrieve() * .retrieve()
* .bodyToMono(Account.class) * .bodyToMono(Account.class)
* .onErrorResume(WebClientResponseException.class, * .onErrorResume(WebClientResponseException.class,