HBASE-1435 HRegionServer is using wrong info bind address from hbase-site.xml
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@776185 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
66c6ee2e99
commit
5af19c7d31
|
@ -138,6 +138,8 @@ Release 0.20.0 - Unreleased
|
|||
exception, all messages that follow are dropped on floor
|
||||
HBASE-1434 Duplicate property in hbase-default.xml (Lars George via Andrew
|
||||
Purtell)
|
||||
HBASE-1435 HRegionServer is using wrong info bind address from
|
||||
hbase-site.xml (Lars George via Stack)
|
||||
|
||||
IMPROVEMENTS
|
||||
HBASE-1089 Add count of regions on filesystem to master UI; add percentage
|
||||
|
|
|
@ -1147,7 +1147,7 @@ public class HRegionServer implements HConstants, HRegionInterface,
|
|||
int port = this.conf.getInt("hbase.regionserver.info.port", 60030);
|
||||
// -1 is for disabling info server
|
||||
if (port >= 0) {
|
||||
String addr = this.conf.get("hbase.master.info.bindAddress", "0.0.0.0");
|
||||
String addr = this.conf.get("hbase.regionserver.info.bindAddress", "0.0.0.0");
|
||||
// check if auto port bind enabled
|
||||
boolean auto = this.conf.getBoolean("hbase.regionserver.info.port.auto",
|
||||
false);
|
||||
|
|
Loading…
Reference in New Issue