From a3486e2d938f83909323ed0b89b6b17bcd9b0958 Mon Sep 17 00:00:00 2001 From: Olga Maciaszek-Sharma Date: Thu, 7 Jan 2021 11:55:29 +0100 Subject: [PATCH] Fix property value. Fixes gh-875. --- 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 64eaed37..86b14cd5 100644 --- a/docs/src/main/asciidoc/spring-cloud-commons.adoc +++ b/docs/src/main/asciidoc/spring-cloud-commons.adoc @@ -437,7 +437,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=false`. +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`.