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:
Michael Stack 2009-05-19 04:56:46 +00:00
parent 66c6ee2e99
commit 5af19c7d31
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -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);