HBASE-11162 RegionServer webui uses the default master info port irrespective of the user configuration (Srikanth)

This commit is contained in:
Jimmy Xiang 2014-06-12 20:04:06 -07:00
parent 62a78ab661
commit 9e824cda19

View File

@ -177,7 +177,8 @@ public class MasterRpcServices extends RSRpcServices
private RegionServerStartupResponse.Builder createConfigurationSubset() {
RegionServerStartupResponse.Builder resp = addConfig(
RegionServerStartupResponse.newBuilder(), HConstants.HBASE_DIR);
return addConfig(resp, "fs.defaultFS");
resp = addConfig(resp, "fs.defaultFS");
return addConfig(resp, "hbase.master.info.port");
}
private RegionServerStartupResponse.Builder addConfig(