Skip to content

Commit 5afb86c

Browse files
authored
Fix code typo in the thread context docs (#3186)
1 parent c9e3824 commit 5afb86c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/site/antora/modules/ROOT/pages/manual/thread-context.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ List<String> ndc = ThreadContext.getImmutableStack().asList(); // <1>
104104
105105
executor.submit(() -> {
106106
try (CloseableThreadContext.Instance ignored = CloseableThreadContext
107-
.putAll(values) // <2>
108-
.pushAll(messages)) { // <2>
107+
.putAll(mdc) // <2>
108+
.pushAll(ndc)) { // <2>
109109
110110
LOGGER.debug("Processing for user started");
111111
// ...

0 commit comments

Comments
 (0)