Skip to content

Commit 331b14b

Browse files
committed
Fix NoHttp violation
1 parent 90268de commit 331b14b

File tree

1 file changed

+1
-1
lines changed
  • spring-webflux/src/main/java/org/springframework/web/reactive/function/client

1 file changed

+1
-1
lines changed

spring-webflux/src/main/java/org/springframework/web/reactive/function/client/WebClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ interface ResponseSpec {
664664
* downstream, for example:
665665
* <pre class="code">
666666
* webClient.get()
667-
* .uri("http://abc.com/account/123")
667+
* .uri("https://abc.com/account/123")
668668
* .retrieve()
669669
* .bodyToMono(Account.class)
670670
* .onErrorResume(WebClientResponseException.class,

0 commit comments

Comments
 (0)