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/28 17:00:03 UTC

[lucene-solr] branch reference_impl_dev updated: @615 Raise join wait.

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

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


The following commit(s) were added to refs/heads/reference_impl_dev by this push:
     new a646ca1  @615 Raise join wait.
a646ca1 is described below

commit a646ca1e62fd13af8f3b3fee7c61477de442cd75
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Fri Aug 28 11:58:41 2020 -0500

    @615 Raise join wait.
---
 solr/test-framework/src/java/org/apache/solr/SolrTestCase.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/test-framework/src/java/org/apache/solr/SolrTestCase.java b/solr/test-framework/src/java/org/apache/solr/SolrTestCase.java
index 75a96f9..f56b273 100644
--- a/solr/test-framework/src/java/org/apache/solr/SolrTestCase.java
+++ b/solr/test-framework/src/java/org/apache/solr/SolrTestCase.java
@@ -613,7 +613,7 @@ public class SolrTestCase extends LuceneTestCase {
         System.out.println("interrupt on " + thread.getName());
         thread.interrupt();
         try {
-          thread.join(100);
+          thread.join(250);
         } catch (InterruptedException e) {
           ParWork.propegateInterrupt(e);
         }