HBASE-4481 TestMergeTool failed in 0.92 build 20

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1179288 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2011-10-05 16:11:20 +00:00
parent 456e7fbb60
commit 1131ebe570
2 changed files with 6 additions and 0 deletions

View File

@ -337,6 +337,7 @@ Release 0.92.0 - Unreleased
HBASE-4334 HRegion.get never validates row (Lars Hofhansl)
HBASE-4494 AvroServer:: get fails with NPE on a non-existent row
(Kay Kay)
HBASE-4481 TestMergeTool failed in 0.92 build 20
TESTS
HBASE-4450 test for number of blocks read: to serve as baseline for expected

View File

@ -60,6 +60,11 @@ public class TestMergeTool extends HBaseTestCase {
public void setUp() throws Exception {
// Set the timeout down else this test will take a while to complete.
this.conf.setLong("hbase.zookeeper.recoverable.waittime", 1000);
// Make it so we try and connect to a zk that is not there (else we might
// find a zk ensemble put up by another concurrent test and this will
// mess up this test. Choose unlikely port. Default test port is 21818.
// Default zk port is 2181.
this.conf.setInt("hbase.zookeeper.property.clientPort", 10001);
this.conf.set("hbase.hstore.compactionThreshold", "2");