You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by cp...@apache.org on 2024/02/07 11:42:43 UTC

(solr) 02/02: make it compile: ExecutorUtil.newMDCAwareCachedThreadPool signature changed

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

cpoerschke pushed a commit to branch jira/solr-13350
in repository https://gitbox.apache.org/repos/asf/solr.git

commit 685cd7abbf88e3d7788ebc2ab6923e598552e745
Author: Christine Poerschke <cp...@apache.org>
AuthorDate: Wed Feb 7 11:40:47 2024 +0000

    make it compile: ExecutorUtil.newMDCAwareCachedThreadPool signature changed
---
 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 41b4058c57b..7dd24a7c3b4 100644
--- a/solr/core/src/java/org/apache/solr/core/CoreContainer.java
+++ b/solr/core/src/java/org/apache/solr/core/CoreContainer.java
@@ -443,7 +443,7 @@ public class CoreContainer {
 
     this.collectorExecutor =
         ExecutorUtil.newMDCAwareCachedThreadPool(
-            6, new SolrNamedThreadFactory("searcherCollector"));
+            6, Integer.MAX_VALUE, new SolrNamedThreadFactory("searcherCollector"));
   }
 
   @SuppressWarnings({"unchecked"})