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/29 12:12:07 UTC

[lucene-solr] 12/22: @615 Raise join wait.

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 add722415d7891a80162c38fabe71050b99cba3e
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);
         }