You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by cp...@apache.org on 2021/04/09 10:18:44 UTC

[solr] 02/02: fix 'succes[s]ful' typo in a RecoveryStrategy error log message

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 <cp...@apache.org>
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;
           }