You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bookkeeper.apache.org by sh...@apache.org on 2022/08/31 01:38:23 UTC

[bookkeeper] branch master updated: [BOOKIE-SHELL]fix queryautorecoverystatus command (#3459) (#3460)

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

shoothzj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bookkeeper.git


The following commit(s) were added to refs/heads/master by this push:
     new b13dd20f0a [BOOKIE-SHELL]fix queryautorecoverystatus command (#3459) (#3460)
b13dd20f0a is described below

commit b13dd20f0a905c615daef2e1ddcfa0e0979d1a07
Author: 赤月 <97...@qq.com>
AuthorDate: Wed Aug 31 09:38:16 2022 +0800

    [BOOKIE-SHELL]fix queryautorecoverystatus command (#3459) (#3460)
    
    ### Motivation
    
    bugfix
    
    ### Changes
    
    Fix CMD_QUERY_AUTORECOVERY_STATUS command about registering to BOOKIE_SHEEL command mapping
    
    Master Issue: #3459
---
 .../src/main/java/org/apache/bookkeeper/bookie/BookieShell.java         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bookkeeper-server/src/main/java/org/apache/bookkeeper/bookie/BookieShell.java b/bookkeeper-server/src/main/java/org/apache/bookkeeper/bookie/BookieShell.java
index 78a8a6abf8..d9a5907e40 100644
--- a/bookkeeper-server/src/main/java/org/apache/bookkeeper/bookie/BookieShell.java
+++ b/bookkeeper-server/src/main/java/org/apache/bookkeeper/bookie/BookieShell.java
@@ -160,7 +160,7 @@ public class BookieShell implements Tool {
     static final String CMD_REBUILD_DB_LEDGERS_INDEX = "rebuild-db-ledgers-index";
     static final String CMD_CHECK_DB_LEDGERS_INDEX = "check-db-ledgers-index";
     static final String CMD_REGENERATE_INTERLEAVED_STORAGE_INDEX_FILE = "regenerate-interleaved-storage-index-file";
-    static final String CMD_QUERY_AUTORECOVERY_STATUS = "queryrecoverystatus";
+    static final String CMD_QUERY_AUTORECOVERY_STATUS = "queryautorecoverystatus";
 
     // cookie commands
     static final String CMD_CREATE_COOKIE = "cookie_create";