Skip to content

Commit

Permalink
Describe disabling config token replacement (#6170)
Browse files Browse the repository at this point in the history
  • Loading branch information
tjquinno authored Feb 13, 2023
1 parent bcf0022 commit a76f3b3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docs/se/config/advanced-configuration.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -611,6 +611,18 @@ Config config = Config.builder()
<3> A default configuration containing token references that are resolved
using the environment-specific override.
You can disable key and value token replacement separately as the following example shows.
[source,java]
.Disabling Key and Value Token Replacement
----
Config config = Config.builder()
.disableKeyResolving()
.disableValueResolving()
// other Config builder settings
.build();
----
== Executors for Asynchronous Config Activity
Various parts of the config system work asynchronously:
Expand Down

0 comments on commit a76f3b3

Please sign in to comment.