From 1eee03a313ad56289d2b05f05328d5cb780d5845 Mon Sep 17 00:00:00 2001 From: Chanhyeong Cho Date: Fri, 15 Apr 2022 09:10:58 +0900 Subject: [PATCH] Fix typo in spring-cloud-commons.adoc (#1096) --- docs/src/main/asciidoc/spring-cloud-commons.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/spring-cloud-commons.adoc b/docs/src/main/asciidoc/spring-cloud-commons.adoc index d7faa4ad..fbd29e52 100644 --- a/docs/src/main/asciidoc/spring-cloud-commons.adoc +++ b/docs/src/main/asciidoc/spring-cloud-commons.adoc @@ -447,7 +447,7 @@ Then, `ReactiveLoadBalancer` is used underneath. A load-balanced `RestTemplate` can be configured to retry failed requests. By default, this logic is disabled. -For the non-reactive version (with `RestTemplate`), you can enable it by adding link:https://github.com/spring-projects/spring-retry[Spring Retry] to your application's classpath. For the reactive version (with `WebTestClient), you need to set `spring.cloud.loadbalancer.retry.enabled=true`. +For the non-reactive version (with `RestTemplate`), you can enable it by adding link:https://github.com/spring-projects/spring-retry[Spring Retry] to your application's classpath. For the reactive version (with `WebTestClient`), you need to set `spring.cloud.loadbalancer.retry.enabled=true`. If you would like to disable the retry logic with Spring Retry or Reactive Retry on the classpath, you can set `spring.cloud.loadbalancer.retry.enabled=false`.