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/29 02:53:56 UTC

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

Author: markrmiller
Date: Sun Jan 29 01:53:55 2012
New Revision: 1237190

URL: http://svn.apache.org/viewvc?rev=1237190&view=rev
Log:
raise the timeout on this test

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=1237190&r1=1237189&r2=1237190&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 Sun Jan 29 01:53:55 2012
@@ -218,7 +218,7 @@ public class LeaderElectionIntegrationTe
   private String getLeader() throws InterruptedException, KeeperException {
     
     reader.updateCloudState(true);
-    ZkNodeProps props = reader.getLeaderProps("collection1", "shard1", 15000);
+    ZkNodeProps props = reader.getLeaderProps("collection1", "shard1", 30000);
     String leader = props.get(ZkStateReader.NODE_NAME_PROP);
     
     return leader;