You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zh...@apache.org on 2019/12/29 14:13:32 UTC

[hbase] branch branch-2 updated: HBASE-23618 Addendum add main method

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

zhangduo pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2 by this push:
     new 7056238  HBASE-23618 Addendum add main method
7056238 is described below

commit 7056238d266f94bc92fe15d88eeb92590f253978
Author: Duo Zhang <zh...@apache.org>
AuthorDate: Sun Dec 29 22:12:31 2019 +0800

    HBASE-23618 Addendum add main method
---
 .../hbase/procedure2/store/region/WALProcedurePrettyPrinter.java      | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/procedure2/store/region/WALProcedurePrettyPrinter.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/procedure2/store/region/WALProcedurePrettyPrinter.java
index 35f9fc0..9afd981 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/procedure2/store/region/WALProcedurePrettyPrinter.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/procedure2/store/region/WALProcedurePrettyPrinter.java
@@ -130,4 +130,8 @@ public class WALProcedurePrettyPrinter extends AbstractHBaseTool {
       }
     }
   }
+
+  public static void main(String[] args) {
+    new WALProcedurePrettyPrinter().doStaticMain(args);
+  }
 }