You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by el...@apache.org on 2018/08/16 14:36:22 UTC

hbase git commit: HBASE-21062 Spelling mistake (addendum)

Repository: hbase
Updated Branches:
  refs/heads/master 4d7ed0f94 -> 50a8ea719


HBASE-21062 Spelling mistake (addendum)

Forgot to change in master before pushing.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/50a8ea71
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/50a8ea71
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/50a8ea71

Branch: refs/heads/master
Commit: 50a8ea7191acd424761f9cf68f659e4b4b59bd89
Parents: 4d7ed0f
Author: Josh Elser <el...@apache.org>
Authored: Thu Aug 16 10:35:47 2018 -0400
Committer: Josh Elser <el...@apache.org>
Committed: Thu Aug 16 10:35:47 2018 -0400

----------------------------------------------------------------------
 .../src/main/java/org/apache/hadoop/hbase/wal/WALFactory.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/50a8ea71/hbase-server/src/main/java/org/apache/hadoop/hbase/wal/WALFactory.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/wal/WALFactory.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/wal/WALFactory.java
index 7b2cdbb..0e6e365 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/wal/WALFactory.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/wal/WALFactory.java
@@ -130,7 +130,7 @@ public class WALFactory {
       Providers provider = Providers.valueOf(conf.get(key, defaultValue));
 
       // AsyncFSWALProvider is not guaranteed to work on all Hadoop versions, when it's chosen as
-      // the default and we can't us it, we want to fall back to FSHLog which we know works on
+      // the default and we can't use it, we want to fall back to FSHLog which we know works on
       // all versions.
       if (provider == getDefaultProvider() && provider.clazz == AsyncFSWALProvider.class
           && !AsyncFSWALProvider.load()) {