See gh-25451
This commit is contained in:
izeye
2021-02-27 01:20:32 +09:00
committed by Stephane Nicoll
parent c35a4cc283
commit c823f44e76
7 changed files with 17 additions and 17 deletions

View File

@@ -2349,7 +2349,7 @@ The sensitive portion of the URI is identified using the format `<scheme>://<use
For example, for the property `myclient.uri=http://user1:password1@localhost:8081`, the resulting sanitized value is
`++http://user1:******@localhost:8081++`.
The defaults patterns used by the `env` and `configprops` endpoints can be replaced using configprop:management.endpoint.env.keys-to-sanitize[] and configprop:management.endpoint.configprops.keys-to-sanitize[] respectively.
The default patterns used by the `env` and `configprops` endpoints can be replaced using configprop:management.endpoint.env.keys-to-sanitize[] and configprop:management.endpoint.configprops.keys-to-sanitize[] respectively.
Alternatively, additional patterns can be configured using configprop:management.endpoint.env.additional-keys-to-sanitize[] and configprop:management.endpoint.configprops.additional-keys-to-sanitize[].

View File

@@ -4929,7 +4929,7 @@ If the connection to InfluxDB requires a user and password, you can set the `spr
InfluxDB relies on OkHttp.
If you need to tune the http client `InfluxDB` uses behind the scenes, you can register an `InfluxDbOkHttpClientBuilderProvider` bean.
If you need more control over the configuration, consider registering a `InfluxDbCustomizer` bean.
If you need more control over the configuration, consider registering an `InfluxDbCustomizer` bean.
@@ -6255,7 +6255,7 @@ The thread pool uses one thread by default and its settings can be fine-tuned us
spring:
task:
scheduling:
thread-name-prefix: "scheduling-"
thread-name-prefix: "scheduling-"
pool:
size: 2
----