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 2012/01/27 00:03:51 UTC

svn commit: r1236440 - /lucene/dev/trunk/solr/test-framework/src/java/org/apache/solr/SolrTestCaseJ4.java

Author: markrmiller
Date: Thu Jan 26 23:03:51 2012
New Revision: 1236440

URL: http://svn.apache.org/viewvc?rev=1236440&view=rev
Log:
raise the length of time that we are willing to wait for searchers to be closed

Modified:
    lucene/dev/trunk/solr/test-framework/src/java/org/apache/solr/SolrTestCaseJ4.java

Modified: lucene/dev/trunk/solr/test-framework/src/java/org/apache/solr/SolrTestCaseJ4.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/test-framework/src/java/org/apache/solr/SolrTestCaseJ4.java?rev=1236440&r1=1236439&r2=1236440&view=diff
==============================================================================
--- lucene/dev/trunk/solr/test-framework/src/java/org/apache/solr/SolrTestCaseJ4.java (original)
+++ lucene/dev/trunk/solr/test-framework/src/java/org/apache/solr/SolrTestCaseJ4.java Thu Jan 26 23:03:51 2012
@@ -127,7 +127,7 @@ public abstract class SolrTestCaseJ4 ext
      // wait a bit in case any ending threads have anything to release
      int retries = 0;
      while (endNumOpens - numOpens != endNumCloses - numCloses) {
-       if (retries++ > 15) {
+       if (retries++ > 30) {
          break;
        }
        try {