You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by mm...@apache.org on 2021/02/25 20:39:12 UTC

[accumulo] branch main updated: Fix typo in RecoveryManager

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

mmiller pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/main by this push:
     new 7e3c67d  Fix typo in RecoveryManager
7e3c67d is described below

commit 7e3c67d0c0b831d7d29c69e24d07dd700f24c5e0
Author: Mike Miller <mm...@apache.org>
AuthorDate: Thu Feb 25 15:37:53 2021 -0500

    Fix typo in RecoveryManager
---
 .../main/java/org/apache/accumulo/manager/recovery/RecoveryManager.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/manager/src/main/java/org/apache/accumulo/manager/recovery/RecoveryManager.java b/server/manager/src/main/java/org/apache/accumulo/manager/recovery/RecoveryManager.java
index 4406f5a..c849b8d 100644
--- a/server/manager/src/main/java/org/apache/accumulo/manager/recovery/RecoveryManager.java
+++ b/server/manager/src/main/java/org/apache/accumulo/manager/recovery/RecoveryManager.java
@@ -112,7 +112,7 @@ public class RecoveryManager {
           initiateSort(sortId, source, destination);
         }
       } catch (FileNotFoundException e) {
-        log.debug("Unable to initate log sort for " + source + ": " + e);
+        log.debug("Unable to initiate log sort for " + source + ": " + e);
       } catch (Exception e) {
         log.warn("Failed to initiate log sort " + source, e);
       } finally {