You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by li...@apache.org on 2017/01/11 10:27:25 UTC

hbase git commit: HBASE-14061 Support CF-level Storage Policy (addendum2)

Repository: hbase
Updated Branches:
  refs/heads/master 36eeb2c56 -> 953416eb3


HBASE-14061 Support CF-level Storage Policy (addendum2)

Resolve TestPartitionedMobCompactor UT failure


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

Branch: refs/heads/master
Commit: 953416eb3411f7361f39283fabd4a555bfc873f0
Parents: 36eeb2c
Author: Yu Li <li...@apache.org>
Authored: Wed Jan 11 18:23:37 2017 +0800
Committer: Yu Li <li...@apache.org>
Committed: Wed Jan 11 18:23:37 2017 +0800

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/953416eb/hbase-server/src/main/java/org/apache/hadoop/hbase/fs/HFileSystem.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/fs/HFileSystem.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/fs/HFileSystem.java
index fe8b3b2..904b8a4 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/fs/HFileSystem.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/fs/HFileSystem.java
@@ -257,7 +257,7 @@ public class HFileSystem extends FilterFileSystem {
     Class<?> clazz = conf.getClass("fs." + uri.getScheme() + ".impl", null);
     if (clazz != null) {
       // This will be true for Hadoop 1.0, or 0.20.
-      fs = (FileSystem)ReflectionUtils.newInstance(clazz, conf);
+      fs = (FileSystem) org.apache.hadoop.util.ReflectionUtils.newInstance(clazz, conf);
       fs.initialize(uri, conf);
     } else {
       // For Hadoop 2.0, we have to go through FileSystem for the filesystem