File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
core/src/java/org/apache/solr/handler Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -156,6 +156,8 @@ Bug Fixes
156156
157157* SOLR-17200: Fix false positive race condition in `/health?requireHealthyCores=true` during core loading (hossman)
158158
159+ * SOLR-17218: Fix indexFetcher logging to include MDC details (hossman)
160+
159161Dependency Upgrades
160162---------------------
161163
Original file line number Diff line number Diff line change @@ -1214,9 +1214,10 @@ private void setupPolling(String intervalStr) {
12141214 log .info (" No value set for 'pollInterval'. Timer Task not started." );
12151215 return ;
12161216 }
1217-
1217+ final Map < String , String > context = MDC . getCopyOfContextMap ();
12181218 Runnable task =
12191219 () -> {
1220+ MDC .setContextMap (context );
12201221 if (pollDisabled .get ()) {
12211222 log .info ("Poll disabled" );
12221223 return ;
You can’t perform that action at this time.
0 commit comments