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

[lucene-solr] branch branch_8x updated: 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 branch_8x
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_8x by this push:
     new 49215e0  fix 'succes[s]ful' typo in a RecoveryStrategy error log message
49215e0 is described below

commit 49215e047617fd0d4b41160e9462b28dacc557f5
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 1366970..aff41c4 100644
--- a/solr/core/src/java/org/apache/solr/cloud/RecoveryStrategy.java
+++ b/solr/core/src/java/org/apache/solr/cloud/RecoveryStrategy.java
@@ -410,7 +410,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;
           }