HBASE-5113 TestDrainingServer expects round robin region assignment but misses a

config parameter


git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1226087 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Zhihong Yu 2011-12-31 13:41:55 +00:00
parent d499eedb3c
commit 497b4e781d
2 changed files with 3 additions and 0 deletions

View File

@ -484,6 +484,8 @@ Release 0.92.0 - Unreleased
HBASE-4874 Run tests with non-secure random, some tests hang otherwise (Lars H)
HBASE-5112 TestReplication#queueFailover flaky due to potentially
uninitialized Scan (Jimmy Xiang)
HBASE-5113 TestDrainingServer expects round robin region assignment but misses a
config parameter
IMPROVEMENTS
HBASE-3290 Max Compaction Size (Nicolas Spiegelberg via Stack)

View File

@ -60,6 +60,7 @@ public class TestDrainingServer {
@BeforeClass
public static void setUpBeforeClass() throws Exception {
TEST_UTIL.startMiniCluster(5);
TEST_UTIL.getConfiguration().setBoolean("hbase.master.enabletable.roundrobin", true);
HTableDescriptor htd = new HTableDescriptor(TABLENAME);
htd.addFamily(new HColumnDescriptor(FAMILY));
TEST_UTIL.createMultiRegionsInMeta(TEST_UTIL.getConfiguration(), htd,