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 2015/01/30 19:46:50 UTC

svn commit: r1656090 - /lucene/dev/trunk/solr/solrj/src/java/org/apache/solr/common/cloud/ZkStateReader.java

Author: markrmiller
Date: Fri Jan 30 18:46:49 2015
New Revision: 1656090

URL: http://svn.apache.org/r1656090
Log:
SOLR-6880: Remove this assert that can fail tests.

Modified:
    lucene/dev/trunk/solr/solrj/src/java/org/apache/solr/common/cloud/ZkStateReader.java

Modified: lucene/dev/trunk/solr/solrj/src/java/org/apache/solr/common/cloud/ZkStateReader.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/solrj/src/java/org/apache/solr/common/cloud/ZkStateReader.java?rev=1656090&r1=1656089&r2=1656090&view=diff
==============================================================================
--- lucene/dev/trunk/solr/solrj/src/java/org/apache/solr/common/cloud/ZkStateReader.java (original)
+++ lucene/dev/trunk/solr/solrj/src/java/org/apache/solr/common/cloud/ZkStateReader.java Fri Jan 30 18:46:49 2015
@@ -534,7 +534,6 @@ public class ZkStateReader implements Cl
       synchronized (ZkStateReader.this) {
         for (String watchedCollection : watchedCollections) {
           DocCollection live = getCollectionLive(this, watchedCollection);
-          assert live != null;
           if (live != null) {
             updateWatchedCollection(live);
           }