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 2018/12/10 03:27:07 UTC

[06/18] lucene-solr:branch_7x: SOLR-12801: wait 60 seconds instead of 30 for cores to close

SOLR-12801: wait 60 seconds instead of 30 for cores to close


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/32438312
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/32438312
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/32438312

Branch: refs/heads/branch_7x
Commit: 32438312bb700bb2dbbe5e6f8293d05aee64eef4
Parents: 359a2d5
Author: markrmiller <ma...@apache.org>
Authored: Sun Dec 9 01:08:33 2018 -0600
Committer: markrmiller <ma...@apache.org>
Committed: Sun Dec 9 20:56:07 2018 -0600

----------------------------------------------------------------------
 solr/test-framework/src/java/org/apache/solr/SolrTestCaseJ4.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/32438312/solr/test-framework/src/java/org/apache/solr/SolrTestCaseJ4.java
----------------------------------------------------------------------
diff --git a/solr/test-framework/src/java/org/apache/solr/SolrTestCaseJ4.java b/solr/test-framework/src/java/org/apache/solr/SolrTestCaseJ4.java
index 13d7f22..9a7fef1 100644
--- a/solr/test-framework/src/java/org/apache/solr/SolrTestCaseJ4.java
+++ b/solr/test-framework/src/java/org/apache/solr/SolrTestCaseJ4.java
@@ -313,7 +313,7 @@ public abstract class SolrTestCaseJ4 extends LuceneTestCase {
 
       if (suiteFailureMarker.wasSuccessful()) {
         // if the tests passed, make sure everything was closed / released
-        String orr = clearObjectTrackerAndCheckEmpty(30, false);
+        String orr = clearObjectTrackerAndCheckEmpty(60, false);
         assertNull(orr, orr);
       } else {
         ObjectReleaseTracker.tryClose();