You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2020/07/14 16:53:30 UTC

[lucene-solr] branch reference_impl updated: #148 - Quick work around.

This is an automated email from the ASF dual-hosted git repository.

markrmiller pushed a commit to branch reference_impl
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/reference_impl by this push:
     new 745b6a0  #148 - Quick work around.
745b6a0 is described below

commit 745b6a034f69c85dd87d88386b671bc2ac4ea2be
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Tue Jul 14 11:53:16 2020 -0500

    #148 - Quick work around.
---
 solr/core/src/java/org/apache/solr/core/CoreContainer.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/core/src/java/org/apache/solr/core/CoreContainer.java b/solr/core/src/java/org/apache/solr/core/CoreContainer.java
index 9ae2ec5..08edb27 100644
--- a/solr/core/src/java/org/apache/solr/core/CoreContainer.java
+++ b/solr/core/src/java/org/apache/solr/core/CoreContainer.java
@@ -193,7 +193,7 @@ public class CoreContainer implements Closeable {
 
   private volatile UpdateShardHandler updateShardHandler;
 
-  private final static ThreadPoolExecutor solrCoreLoadExecutor =  new ExecutorUtil.MDCAwareThreadPoolExecutor(0, Integer.MAX_VALUE,
+  private final static ThreadPoolExecutor solrCoreLoadExecutor =  new ThreadPoolExecutor(0, Integer.MAX_VALUE,
           3, TimeUnit.SECONDS,
           new SynchronousQueue<>(),
           new SolrNamedThreadFactory("SolrCoreLoader"));