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/09/15 05:28:44 UTC

svn commit: r1385005 - /lucene/dev/trunk/solr/core/src/test/org/apache/solr/update/SolrCmdDistributorTest.java

Author: markrmiller
Date: Sat Sep 15 03:28:44 2012
New Revision: 1385005

URL: http://svn.apache.org/viewvc?rev=1385005&view=rev
Log:
test fix

Modified:
    lucene/dev/trunk/solr/core/src/test/org/apache/solr/update/SolrCmdDistributorTest.java

Modified: lucene/dev/trunk/solr/core/src/test/org/apache/solr/update/SolrCmdDistributorTest.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/core/src/test/org/apache/solr/update/SolrCmdDistributorTest.java?rev=1385005&r1=1385004&r2=1385005&view=diff
==============================================================================
--- lucene/dev/trunk/solr/core/src/test/org/apache/solr/update/SolrCmdDistributorTest.java (original)
+++ lucene/dev/trunk/solr/core/src/test/org/apache/solr/update/SolrCmdDistributorTest.java Sat Sep 15 03:28:44 2012
@@ -232,7 +232,7 @@ public class SolrCmdDistributorTest exte
   @Override
   public void setUp() throws Exception {
     super.setUp();
-    executor = new ThreadPoolExecutor(0, 5 * 16, 5,
+    executor = new ThreadPoolExecutor(0, Integer.MAX_VALUE, 5,
         TimeUnit.SECONDS, new SynchronousQueue<Runnable>(),
         new DefaultSolrThreadFactory("cmdDistribExecutor"));
   }