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/26 16:54:11 UTC

svn commit: r1236254 - /lucene/dev/trunk/solr/core/src/test/org/apache/solr/cloud/LeaderElectionIntegrationTest.java

Author: markrmiller
Date: Thu Jan 26 15:54:10 2012
New Revision: 1236254

URL: http://svn.apache.org/viewvc?rev=1236254&view=rev
Log:
also raise this test timeout

Modified:
    lucene/dev/trunk/solr/core/src/test/org/apache/solr/cloud/LeaderElectionIntegrationTest.java

Modified: lucene/dev/trunk/solr/core/src/test/org/apache/solr/cloud/LeaderElectionIntegrationTest.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/core/src/test/org/apache/solr/cloud/LeaderElectionIntegrationTest.java?rev=1236254&r1=1236253&r2=1236254&view=diff
==============================================================================
--- lucene/dev/trunk/solr/core/src/test/org/apache/solr/cloud/LeaderElectionIntegrationTest.java (original)
+++ lucene/dev/trunk/solr/core/src/test/org/apache/solr/cloud/LeaderElectionIntegrationTest.java Thu Jan 26 15:54:10 2012
@@ -150,7 +150,7 @@ public class LeaderElectionIntegrationTe
       //printLayout(zkServer.getZkAddress());
       
       // poll until leader change is visible
-      for (int j = 0; j < 30; j++) {
+      for (int j = 0; j < 60; j++) {
         String currentLeader = getLeader();
         if(!leader.equals(currentLeader)) {
           break;