HBASE-16360 TableMapReduceUtil addHBaseDependencyJars has the wrong class name for PrefixTreeCodec (Jing Pu Chen)
This commit is contained in:
parent
897631f8d1
commit
cb507b8cff
|
@ -780,7 +780,7 @@ public class TableMapReduceUtil {
|
|||
Class prefixTreeCodecClass = null;
|
||||
try {
|
||||
prefixTreeCodecClass =
|
||||
Class.forName("org.apache.hadoop.hbase.code.prefixtree.PrefixTreeCodec");
|
||||
Class.forName("org.apache.hadoop.hbase.codec.prefixtree.PrefixTreeCodec");
|
||||
} catch (ClassNotFoundException e) {
|
||||
// this will show up in unit tests but should not show in real deployments
|
||||
LOG.warn("The hbase-prefix-tree module jar containing PrefixTreeCodec is not present." +
|
||||
|
|
Loading…
Reference in New Issue