HRegionServer is using wrong info bind address from hbase-site.xml
------------------------------------------------------------------
Key: HBASE-1435
URL: https://issues.apache.org/jira/browse/HBASE-1435
Project: Hadoop HBase
Issue Type: Bug
Components: regionserver
Affects Versions: 0.19.2
Reporter: Lars George
Fix For: 0.19.3
>From HRegionServer.java, lines 1149+ (on current trunk):
{code}
if (port >= 0) {
String addr = this.conf.get("hbase.master.info.bindAddress", "0.0.0.0");
// check if auto port bind enabled
boolean auto = this.conf.getBoolean("hbase.regionserver.info.port.auto",
false);
{code}
The above line needs to be changed to
{code}
String addr = this.conf.get("hbase.regionserver.info.bindAddress",
"0.0.0.0");
{code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.