Browse Source

Fix typo in configprops.

pull/1255/head
Ryan Baxter 1 year ago
parent
commit
6c04576b18
  1. 2
      docs/src/main/asciidoc/_configprops.adoc
  2. 2
      spring-cloud-commons/src/main/resources/META-INF/additional-spring-configuration-metadata.json

2
docs/src/main/asciidoc/_configprops.adoc

@ -61,7 +61,7 @@ @@ -61,7 +61,7 @@
|spring.cloud.loadbalancer.retry.max-retries-on-next-service-instance | `+++1+++` | Number of retries to be executed on the next `ServiceInstance`. A `ServiceInstance` is chosen before each retry call.
|spring.cloud.loadbalancer.retry.max-retries-on-same-service-instance | `+++0+++` | Number of retries to be executed on the same `ServiceInstance`.
|spring.cloud.loadbalancer.retry.retry-on-all-exceptions | `+++false+++` | Indicates retries should be attempted for all exceptions, not only those specified in `retryableExceptions`.
|spring.cloud.loadbalancer.retry.retry-on-all-operations | `+++false+++` | Indicates retries should be attempted on operations other than `HttpMethod.GET`}.
|spring.cloud.loadbalancer.retry.retry-on-all-operations | `+++false+++` | Indicates retries should be attempted on operations other than `HttpMethod.GET`.
|spring.cloud.loadbalancer.retry.retryable-exceptions | `+++{}+++` | A `Set` of `Throwable` classes that should trigger a retry.
|spring.cloud.loadbalancer.retry.retryable-status-codes | `+++{}+++` | A `Set` of status codes that should trigger a retry.
|spring.cloud.loadbalancer.service-discovery.timeout | | String representation of Duration of the timeout for calls to service discovery.

2
spring-cloud-commons/src/main/resources/META-INF/additional-spring-configuration-metadata.json

@ -132,7 +132,7 @@ @@ -132,7 +132,7 @@
{
"name": "spring.cloud.loadbalancer.retry.retry-on-all-operations",
"defaultValue": false,
"description": "Indicates retries should be attempted on operations other than `HttpMethod.GET`}.",
"description": "Indicates retries should be attempted on operations other than `HttpMethod.GET`.",
"type": "java.lang.Boolean"
},
{

Loading…
Cancel
Save