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/08/30 17:35:36 UTC

[lucene-solr] 01/02: @638 Try allowing the reserved executor again.

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

commit ab1de2688cd3348bb76d94289634a18755db7dff
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Sun Aug 30 12:08:50 2020 -0500

    @638 Try allowing the reserved executor again.
---
 .../src/java/org/apache/solr/common/util/SolrQueuedThreadPool.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/solrj/src/java/org/apache/solr/common/util/SolrQueuedThreadPool.java b/solr/solrj/src/java/org/apache/solr/common/util/SolrQueuedThreadPool.java
index 6c96716..e99e0d2 100644
--- a/solr/solrj/src/java/org/apache/solr/common/util/SolrQueuedThreadPool.java
+++ b/solr/solrj/src/java/org/apache/solr/common/util/SolrQueuedThreadPool.java
@@ -89,7 +89,7 @@ public class SolrQueuedThreadPool extends ContainerLifeCycle implements ThreadFa
 
     public SolrQueuedThreadPool(String name) {
         this(Integer.MAX_VALUE, 12,
-                60000, 0,
+                60000, -1,
                 null, null,
                 new  SolrNamedThreadFactory(name));
         this.name = name;