HBASE-2591 HBASE-2587 hardcoded the port that dfscluster runs on

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@947138 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2010-05-21 19:38:10 +00:00
parent 4ae7a64206
commit 1edb36c6b6
2 changed files with 3 additions and 2 deletions

View File

@ -349,6 +349,7 @@ Release 0.21.0 - Unreleased
HBASE-2583 Make webapps work in distributed mode again and make webapps
deploy at / instead of at /webapps/master/master.jsp
HBASE-2590 Failed parse of branch element in saveVersion.sh
HBASE-2591 HBASE-2587 hardcoded the port that dfscluster runs on
IMPROVEMENTS
HBASE-1760 Cleanup TODOs in HTable

View File

@ -173,8 +173,8 @@ public class HBaseTestingUtility {
else this.clusterTestBuildDir = dir;
System.setProperty(TEST_DIRECTORY_KEY, this.clusterTestBuildDir.toString());
System.setProperty("test.cache.data", this.clusterTestBuildDir.toString());
this.dfsCluster = new MiniDFSCluster(12345, this.conf, servers, true,
true, true, null, null, null, null);
this.dfsCluster = new MiniDFSCluster(0, this.conf, servers, true, true,
true, null, null, null, null);
return this.dfsCluster;
}