This is an automated email from the ASF dual-hosted git repository.
zhangduo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/master by this push:
new c6a9a4d HBASE-23618 Addendum add main method
c6a9a4d is described below
commit c6a9a4d410df6cfe322f7f14db2eaf6fbff7a7f2
Author: Duo Zhang <[email protected]>
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);
+ }
}