HBASE-16360 TableMapReduceUtil addHBaseDependencyJars has the wrong class name for PrefixTreeCodec (Jing Pu Chen)

This commit is contained in:
Matteo Bertozzi 2016-08-23 14:22:20 -07:00
parent 897631f8d1
commit cb507b8cff
1 changed files with 1 additions and 1 deletions

View File

@ -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." +