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:
parent
456e7fbb60
commit
1131ebe570
@ -337,6 +337,7 @@ Release 0.92.0 - Unreleased
|
|||||||
HBASE-4334 HRegion.get never validates row (Lars Hofhansl)
|
HBASE-4334 HRegion.get never validates row (Lars Hofhansl)
|
||||||
HBASE-4494 AvroServer:: get fails with NPE on a non-existent row
|
HBASE-4494 AvroServer:: get fails with NPE on a non-existent row
|
||||||
(Kay Kay)
|
(Kay Kay)
|
||||||
|
HBASE-4481 TestMergeTool failed in 0.92 build 20
|
||||||
|
|
||||||
TESTS
|
TESTS
|
||||||
HBASE-4450 test for number of blocks read: to serve as baseline for expected
|
HBASE-4450 test for number of blocks read: to serve as baseline for expected
|
||||||
|
@ -60,6 +60,11 @@ public class TestMergeTool extends HBaseTestCase {
|
|||||||
public void setUp() throws Exception {
|
public void setUp() throws Exception {
|
||||||
// Set the timeout down else this test will take a while to complete.
|
// Set the timeout down else this test will take a while to complete.
|
||||||
this.conf.setLong("hbase.zookeeper.recoverable.waittime", 1000);
|
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");
|
this.conf.set("hbase.hstore.compactionThreshold", "2");
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user