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

wchevreuil pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase-operator-tools.git


The following commit(s) were added to refs/heads/master by this push:
     new 8d75b1d  HBASE-23256 fix hbck2 assigns/unassigns usage (#44)
8d75b1d is described below

commit 8d75b1d9dbc8ac8ba59e30411079985491e1f6ec
Author: YeChao Chen <[email protected]>
AuthorDate: Wed Nov 6 18:10:10 2019 +0800

    HBASE-23256 fix hbck2 assigns/unassigns usage (#44)
    
    Signed-off-by: Wellington Chevreuil <[email protected]>
---
 hbase-hbck2/src/main/java/org/apache/hbase/HBCK2.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/hbase-hbck2/src/main/java/org/apache/hbase/HBCK2.java 
b/hbase-hbck2/src/main/java/org/apache/hbase/HBCK2.java
index 97d457e..0b1d33c 100644
--- a/hbase-hbck2/src/main/java/org/apache/hbase/HBCK2.java
+++ b/hbase-hbck2/src/main/java/org/apache/hbase/HBCK2.java
@@ -431,7 +431,7 @@ public class HBCK2 extends Configured implements 
org.apache.hadoop.util.Tool {
     writer.println("   encoded region names. 1588230740 is the hard-coded name 
for the");
     writer.println("   hbase:meta region and de00010733901a05f5a2a3a382e27dd4 
is an example of");
     writer.println("   what a user-space encoded region name looks like. For 
example:");
-    writer.println("     $ HBCK2 assign 1588230740 
de00010733901a05f5a2a3a382e27dd4");
+    writer.println("     $ HBCK2 assigns 1588230740 
de00010733901a05f5a2a3a382e27dd4");
     writer.println("   Returns the pid(s) of the created AssignProcedure(s) or 
-1 if none.");
   }
 
@@ -573,7 +573,7 @@ public class HBCK2 extends Configured implements 
org.apache.hadoop.util.Tool {
     writer.println("   more encoded region names. 1588230740 is the hard-coded 
name for the");
     writer.println("   hbase:meta region and de00010733901a05f5a2a3a382e27dd4 
is an example");
     writer.println("   of what a userspace encoded region name looks like. For 
example:");
-    writer.println("     $ HBCK2 unassign 1588230740 
de00010733901a05f5a2a3a382e27dd4");
+    writer.println("     $ HBCK2 unassigns 1588230740 
de00010733901a05f5a2a3a382e27dd4");
     writer.println("   Returns the pid(s) of the created UnassignProcedure(s) 
or -1 if none.");
     writer.println();
     writer.println("   SEE ALSO, org.apache.hbase.hbck1.OfflineMetaRepair, the 
offline");

Reply via email to