From 2c391d64a8496ec2cbbd69655a9ff29d9f23bf11 Mon Sep 17 00:00:00 2001 From: hapihu Date: Tue, 31 Aug 2021 19:05:25 +0800 Subject: [PATCH] [HBASE-26243]Fix typo for file "hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsck.java" --- .../main/java/org/apache/hadoop/hbase/util/HBaseFsck.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsck.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsck.java index 28f0d5eb88..b91d7d9357 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsck.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsck.java @@ -1820,7 +1820,7 @@ public class HBaseFsck extends Configured implements Closeable { } /** - * Check consistency of all regions using mulitple threads concurrently. + * Check consistency of all regions using multiple threads concurrently. */ private void checkRegionConsistencyConcurrently( final List workItems) @@ -3559,7 +3559,7 @@ public class HBaseFsck extends Configured implements Closeable { out.println("NOTE: Following options are NOT supported as of HBase version 2.0+."); out.println(""); out.println(" UNSUPPORTED Metadata Repair options: (expert features, use with caution!)"); - out.println(" -fix Try to fix region assignments. This is for backwards compatiblity"); + out.println(" -fix Try to fix region assignments. This is for backwards compatibility"); out.println(" -fixAssignments Try to fix region assignments. Replaces the old -fix"); out.println(" -fixMeta Try to fix meta problems. This assumes HDFS region info is good."); out.println(" -fixHdfsHoles Try to fix region holes in hdfs."); @@ -3859,7 +3859,7 @@ public class HBaseFsck extends Configured implements Closeable { for (String arg : args) { if (unsupportedOptionsInV2.contains(arg)) { errors.reportError(ERROR_CODE.UNSUPPORTED_OPTION, - "option '" + arg + "' is not " + "supportted!"); + "option '" + arg + "' is not " + "supported!"); result = false; break; } -- 2.24.3 (Apple Git-128)