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:35 UTC

[lucene-solr] branch reference_impl updated (dd160e6 -> f32e158)

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

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


    from dd160e6  @637 Some useful renames.
     new ab1de26  @638 Try allowing the reserved executor again.
     new f32e158  @639 Move fairly slow for what it's doing, sleep test to Nightly.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../src/java/org/apache/solr/common/util/SolrQueuedThreadPool.java      | 2 +-
 solr/solrj/src/test/org/apache/solr/common/cloud/SolrZkClientTest.java  | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)


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

Posted by ma...@apache.org.
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;


[lucene-solr] 02/02: @639 Move fairly slow for what it's doing, sleep test to Nightly.

Posted by ma...@apache.org.
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 f32e158f4f7d9caf86e8f473e2644b0991a2bcf6
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Sun Aug 30 12:34:36 2020 -0500

    @639 Move fairly slow for what it's doing, sleep test to Nightly.
---
 solr/solrj/src/test/org/apache/solr/common/cloud/SolrZkClientTest.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/solr/solrj/src/test/org/apache/solr/common/cloud/SolrZkClientTest.java b/solr/solrj/src/test/org/apache/solr/common/cloud/SolrZkClientTest.java
index 2ffd741..042225c 100644
--- a/solr/solrj/src/test/org/apache/solr/common/cloud/SolrZkClientTest.java
+++ b/solr/solrj/src/test/org/apache/solr/common/cloud/SolrZkClientTest.java
@@ -26,6 +26,7 @@ import java.util.Collections;
 import java.util.List;
 import java.util.concurrent.atomic.AtomicInteger;
 
+import org.apache.lucene.util.LuceneTestCase;
 import org.apache.solr.SolrTestCaseJ4;
 import org.apache.solr.client.solrj.impl.CloudSolrClient;
 import org.apache.solr.client.solrj.request.CollectionAdminRequest;
@@ -44,6 +45,7 @@ import org.junit.Test;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
+@LuceneTestCase.Nightly // sleepy slow test
 public class SolrZkClientTest extends SolrCloudTestCase {
   private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());