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 11:46:16 UTC

[lucene-solr] branch jira/solr15138 updated: Fixing precommit

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

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


The following commit(s) were added to refs/heads/jira/solr15138 by this push:
     new f5e62f6  Fixing precommit
f5e62f6 is described below

commit f5e62f6ad804884b26479e8497589024445c8231
Author: Ishan Chattopadhyaya <is...@apache.org>
AuthorDate: Fri Feb 12 17:15:07 2021 +0530

    Fixing precommit
---
 .../src/java/org/apache/solr/common/cloud/PerReplicaStatesOps.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/solrj/src/java/org/apache/solr/common/cloud/PerReplicaStatesOps.java b/solr/solrj/src/java/org/apache/solr/common/cloud/PerReplicaStatesOps.java
index 486f285..0f5bb53 100644
--- a/solr/solrj/src/java/org/apache/solr/common/cloud/PerReplicaStatesOps.java
+++ b/solr/solrj/src/java/org/apache/solr/common/cloud/PerReplicaStatesOps.java
@@ -69,7 +69,7 @@ public class PerReplicaStatesOps {
         try {
             zkClient.multi(ops, true);
         } catch (KeeperException e) {
-          log.error("multi op exception : " + e.getMessage() + zkClient.getChildren(znode, null, true));
+          log.error("Multi-op exception: {}", zkClient.getChildren(znode, null, true));
           throw e;
         }