HBASE-5105 TestImportTsv failed with hadoop 0.22 (Ming Ma)

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1226103 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Zhihong Yu 2011-12-31 15:36:14 +00:00
parent 50d332606d
commit ceafb4aab8
2 changed files with 3 additions and 1 deletions

View File

@ -486,6 +486,7 @@ Release 0.92.0 - Unreleased
uninitialized Scan (Jimmy Xiang)
HBASE-5113 TestDrainingServer expects round robin region assignment but misses a
config parameter
HBASE-5105 TestImportTsv failed with hadoop 0.22 (Ming Ma)
IMPROVEMENTS
HBASE-3290 Max Compaction Size (Nicolas Spiegelberg via Stack)

View File

@ -186,8 +186,9 @@ public class TestImportTsv {
HBaseTestingUtility htu1 = new HBaseTestingUtility();
MiniHBaseCluster cluster = htu1.startMiniCluster();
htu1.startMiniMapReduceCluster();
GenericOptionsParser opts = new GenericOptionsParser(cluster.getConfiguration(), args);
GenericOptionsParser opts = new GenericOptionsParser(htu1.getConfiguration(), args);
Configuration conf = opts.getConfiguration();
args = opts.getRemainingArgs();