This is an automated email from the ASF dual-hosted git repository. cpoerschke pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/solr.git
commit 08d7f057717ccb63ea56061d20a7ff3e0faad252 Author: Christine Poerschke <[email protected]> AuthorDate: Fri Apr 9 10:33:04 2021 +0100 fix 'succes[s]ful' typo in a RecoveryStrategy error log message --- solr/core/src/java/org/apache/solr/cloud/RecoveryStrategy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solr/core/src/java/org/apache/solr/cloud/RecoveryStrategy.java b/solr/core/src/java/org/apache/solr/cloud/RecoveryStrategy.java index 0ca1a47..9465bc4 100644 --- a/solr/core/src/java/org/apache/solr/cloud/RecoveryStrategy.java +++ b/solr/core/src/java/org/apache/solr/cloud/RecoveryStrategy.java @@ -403,7 +403,7 @@ public class RecoveryStrategy implements Runnable, Closeable { try { zkController.publish(this.coreDescriptor, Replica.State.ACTIVE); } catch (Exception e) { - log.error("Could not publish as ACTIVE after succesful recovery", e); + log.error("Could not publish as ACTIVE after successful recovery", e); successfulRecovery = false; }
