You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by ma...@apache.org on 2010/02/11 05:01:08 UTC

svn commit: r908833 - /lucene/solr/branches/cloud/src/java/org/apache/solr/cloud/ZkController.java

Author: markrmiller
Date: Thu Feb 11 04:01:07 2010
New Revision: 908833

URL: http://svn.apache.org/viewvc?rev=908833&view=rev
Log:
bring back a nocommit - need to fix issue that breaks tests

Modified:
    lucene/solr/branches/cloud/src/java/org/apache/solr/cloud/ZkController.java

Modified: lucene/solr/branches/cloud/src/java/org/apache/solr/cloud/ZkController.java
URL: http://svn.apache.org/viewvc/lucene/solr/branches/cloud/src/java/org/apache/solr/cloud/ZkController.java?rev=908833&r1=908832&r2=908833&view=diff
==============================================================================
--- lucene/solr/branches/cloud/src/java/org/apache/solr/cloud/ZkController.java (original)
+++ lucene/solr/branches/cloud/src/java/org/apache/solr/cloud/ZkController.java Thu Feb 11 04:01:07 2010
@@ -731,9 +731,11 @@
             // shards node yet -- pause and try again
             madeWatch = false;
             if (i == 4) {
-              throw new ZooKeeperException(
-                  SolrException.ErrorCode.SERVER_ERROR,
-                  "Could not set shards zknode watch, because the zknode does not exist");
+              // nocommit : 
+//              throw new ZooKeeperException(
+//                  SolrException.ErrorCode.SERVER_ERROR,
+//                  "Could not set shards zknode watch, because the zknode does not exist");
+            break;
             }
             Thread.sleep(50);
           }