HBASE-563 TestRowFilterAfterWrite erroneously sets master address to 0.0.0.0:60100 rather than relying on conf

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@644948 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jim Kellerman 2008-04-04 21:55:47 +00:00
parent 1e3705f750
commit 9c3fba564c
2 changed files with 2 additions and 13 deletions

View File

@ -10,6 +10,8 @@ Hbase Change Log
havoc of reassignments because open processing is done in series havoc of reassignments because open processing is done in series
HBASE-547 UI shows hadoop version, not hbase version HBASE-547 UI shows hadoop version, not hbase version
HBASE-561 HBase package does not include LICENSE.txt nor build.xml HBASE-561 HBase package does not include LICENSE.txt nor build.xml
HBASE-563 TestRowFilterAfterWrite erroneously sets master address to
0.0.0.0:60100 rather than relying on conf
NEW FEATURES NEW FEATURES
HBASE-548 Tool to online single region HBASE-548 Tool to online single region

View File

@ -88,19 +88,6 @@ public class TestRowFilterAfterWrite extends HBaseClusterTestCase {
conf.setInt("ipc.client.timeout", 20 * 60 * 1000); conf.setInt("ipc.client.timeout", 20 * 60 * 1000);
} }
/**
* {@inheritDoc}
*/
@Override
public void setUp() throws Exception {
// this.conf.set(HConstants.HBASE_DIR, "file:///opt/benchmark/hadoop/hbase");
this.conf.set(HConstants.MASTER_ADDRESS, "0.0.0.0:60100");
// Must call super.setup() after starting mini dfs cluster. Otherwise
// we get a local file system instead of hdfs
super.setUp();
}
/** /**
* {@inheritDoc} * {@inheritDoc}
*/ */