Skip to content

Commit 2eaaf28

Browse files
committed
Merge remote-tracking branch 'origin/3.1.x'
2 parents 8601766 + 66b0abd commit 2eaaf28

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

docs/src/main/asciidoc/_configprops.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
|spring.cloud.discovery.client.simple.local.instance-id | |
1717
|spring.cloud.discovery.client.simple.local.metadata | |
1818
|spring.cloud.discovery.client.simple.local.port | `+++0+++` |
19+
|spring.cloud.discovery.client.simple.local.secure | `+++false+++` |
1920
|spring.cloud.discovery.client.simple.local.service-id | |
2021
|spring.cloud.discovery.client.simple.local.uri | |
2122
|spring.cloud.discovery.client.simple.order | |
@@ -56,7 +57,7 @@
5657
|spring.cloud.loadbalancer.retry.backoff.min-backoff | `+++5 ms+++` | Used to set `RetryBackoffSpec#minBackoff`.
5758
|spring.cloud.loadbalancer.retry.enabled | `+++true+++` | Enables LoadBalancer retries.
5859
|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.
59-
|spring.cloud.loadbalancer.retry.max-retries-on-same-service-instance | `+++0+++` | umber of retries to be executed on the same `ServiceInstance`.
60+
|spring.cloud.loadbalancer.retry.max-retries-on-same-service-instance | `+++0+++` | Number of retries to be executed on the same `ServiceInstance`.
6061
|spring.cloud.loadbalancer.retry.retry-on-all-exceptions | `+++false+++` | Indicates retries should be attempted for all exceptions, not only those specified in `retryableExceptions`.
6162
|spring.cloud.loadbalancer.retry.retry-on-all-operations | `+++false+++` | Indicates retries should be attempted on operations other than `HttpMethod.GET`}.
6263
|spring.cloud.loadbalancer.retry.retryable-exceptions | `+++{}+++` | A `Set` of `Throwable` classes that should trigger a retry.

spring-cloud-commons/src/main/java/org/springframework/cloud/client/DefaultServiceInstance.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ public void setHost(String host) {
143143
public void setPort(int port) {
144144
this.port = port;
145145
}
146-
146+
147147
public void setSecure(boolean secure) {
148148
this.secure = secure;
149149
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
{
127127
"name": "spring.cloud.loadbalancer.retry.max-retries-on-same-service-instance",
128128
"defaultValue": 0,
129-
"description": "umber of retries to be executed on the same `ServiceInstance`.",
129+
"description": "Number of retries to be executed on the same `ServiceInstance`.",
130130
"type": "java.lang.Integer"
131131
},
132132
{

0 commit comments

Comments
 (0)