You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by si...@apache.org on 2012/02/24 08:31:08 UTC

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

Author: siren
Date: Fri Feb 24 07:31:08 2012
New Revision: 1293116

URL: http://svn.apache.org/viewvc?rev=1293116&view=rev
Log:
SOLR-3080: I saw this fail few times, increase sleep time

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

Modified: lucene/dev/trunk/solr/core/src/test/org/apache/solr/cloud/ZkControllerTest.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/core/src/test/org/apache/solr/cloud/ZkControllerTest.java?rev=1293116&r1=1293115&r2=1293116&view=diff
==============================================================================
--- lucene/dev/trunk/solr/core/src/test/org/apache/solr/cloud/ZkControllerTest.java (original)
+++ lucene/dev/trunk/solr/core/src/test/org/apache/solr/cloud/ZkControllerTest.java Fri Feb 24 07:31:08 2012
@@ -220,7 +220,7 @@ public class ZkControllerTest extends So
       assertNotNull("New leader was null.",
           reader.getLeaderUrl("collection1", "shard1", 15000));
 
-      Thread.sleep(1000);
+      Thread.sleep(2000);
       assertEquals("shard was not unregistered", 1, zkController.getZkStateReader().getCloudState().getSlice("collection1", "shard1").getShards().size());
     } finally {
       if (DEBUG) {