HBASE-15824 LocalHBaseCluster gets bind exception in master info port

This commit is contained in:
Enis Soztutar 2016-05-15 23:02:11 -07:00
parent e365191896
commit c96227eed1
1 changed files with 5 additions and 0 deletions

View File

@ -143,6 +143,9 @@ public class LocalHBaseCluster {
// Always have masters and regionservers come up on port '0' so we don't
// clash over default ports.
conf.set(HConstants.MASTER_PORT, "0");
if (conf.getInt(HConstants.MASTER_INFO_PORT, 0) != -1) {
conf.set(HConstants.MASTER_INFO_PORT, "0");
}
conf.set(HConstants.REGIONSERVER_PORT, "0");
if (conf.getInt(HConstants.REGIONSERVER_INFO_PORT, 0) != -1) {
conf.set(HConstants.REGIONSERVER_INFO_PORT, "0");
@ -195,6 +198,7 @@ public class LocalHBaseCluster {
throws IOException, InterruptedException {
return user.runAs(
new PrivilegedExceptionAction<JVMClusterUtil.RegionServerThread>() {
@Override
public JVMClusterUtil.RegionServerThread run() throws Exception {
return addRegionServer(config, index);
}
@ -227,6 +231,7 @@ public class LocalHBaseCluster {
throws IOException, InterruptedException {
return user.runAs(
new PrivilegedExceptionAction<JVMClusterUtil.MasterThread>() {
@Override
public JVMClusterUtil.MasterThread run() throws Exception {
return addMaster(c, index);
}