Merge branch '2.0.x'

This commit is contained in:
Stephane Nicoll 2018-09-19 11:34:39 +02:00
commit 36d22c8541
1 changed files with 1 additions and 1 deletions

View File

@ -5912,7 +5912,7 @@ The following code shows a typical example:
}
public Mono<Details> someRestCall(String name) {
return this.webClient.get().url("/{name}/details", name)
return this.webClient.get().uri("/{name}/details", name)
.retrieve().bodyToMono(Details.class);
}