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

[lucene-solr] branch jira/solr15138_8x updated: Removing parts of SOLR-15136 from here

This is an automated email from the ASF dual-hosted git repository.

ishan pushed a commit to branch jira/solr15138_8x
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/jira/solr15138_8x by this push:
     new 3d69e02  Removing parts of SOLR-15136 from here
3d69e02 is described below

commit 3d69e02bd536f2b164a5f2cd8e915728b0ca6607
Author: Ishan Chattopadhyaya <is...@apache.org>
AuthorDate: Fri Feb 12 12:04:33 2021 +0530

    Removing parts of SOLR-15136 from here
---
 solr/solrj/src/java/org/apache/solr/common/cloud/ZkStateReader.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/solr/solrj/src/java/org/apache/solr/common/cloud/ZkStateReader.java b/solr/solrj/src/java/org/apache/solr/common/cloud/ZkStateReader.java
index 3ac45b4..d9e831e 100644
--- a/solr/solrj/src/java/org/apache/solr/common/cloud/ZkStateReader.java
+++ b/solr/solrj/src/java/org/apache/solr/common/cloud/ZkStateReader.java
@@ -1400,7 +1400,7 @@ public class ZkStateReader implements SolrCloseable {
         }
 
       } catch (NoNodeException e) {
-        log.debug("{} is deleted, stop watching children", collectionPath);
+        log.info("{} is deleted, stop watching children", collectionPath);
       }
     }
   }
@@ -1620,7 +1620,7 @@ public class ZkStateReader implements SolrCloseable {
       ClusterState.initReplicaStateProvider(() -> {
         try {
           PerReplicaStates replicaStates = PerReplicaStates.fetch(collectionPath, zkClient, null);
-          log.debug("per-replica-state ver: {} fetched for initializing {} ", replicaStates.cversion, collectionPath);
+          log.info("per-replica-state ver: {} fetched for initializing {} ", replicaStates.cversion, collectionPath);
           return replicaStates;
         } catch (Exception e) {
           throw new SolrException(ErrorCode.SERVER_ERROR, "Error fetching per-replica-states");
@@ -1764,7 +1764,7 @@ public class ZkStateReader implements SolrCloseable {
         v = new CollectionWatch<>();
         watchSet.set(true);
       }
-      log.debug("already watching , added to stateWatchers");
+      log.info("already watching , added to stateWatchers");
       v.stateWatchers.add(stateWatcher);
       return v;
     });