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 2013/02/20 22:29:45 UTC

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

Author: markrmiller
Date: Wed Feb 20 21:29:44 2013
New Revision: 1448426

URL: http://svn.apache.org/r1448426
Log:
tests: raise timeout

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

Modified: lucene/dev/trunk/solr/core/src/test/org/apache/solr/cloud/UnloadDistributedZkTest.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/core/src/test/org/apache/solr/cloud/UnloadDistributedZkTest.java?rev=1448426&r1=1448425&r2=1448426&view=diff
==============================================================================
--- lucene/dev/trunk/solr/core/src/test/org/apache/solr/cloud/UnloadDistributedZkTest.java (original)
+++ lucene/dev/trunk/solr/core/src/test/org/apache/solr/cloud/UnloadDistributedZkTest.java Wed Feb 20 21:29:44 2013
@@ -113,14 +113,14 @@ public class UnloadDistributedZkTest ext
     
     // there should be only one shard
     Slice shard2 = getCommonCloudSolrServer().getZkStateReader().getClusterState().getSlice(collection, "shard2");
-    long timeoutAt = System.currentTimeMillis() + 30000;
+    long timeoutAt = System.currentTimeMillis() + 45000;
     while (shard2 != null) {
       if (System.currentTimeMillis() > timeoutAt) {
         printLayout();
         fail("Still found shard");
       }
       
-      Thread.sleep(50);
+      Thread.sleep(1000);
       shard2 = getCommonCloudSolrServer().getZkStateReader().getClusterState().getSlice(collection, "shard2");
     }