Return-Path: Delivered-To: apmail-hadoop-hbase-dev-archive@minotaur.apache.org Received: (qmail 51244 invoked from network); 18 May 2009 19:06:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 18 May 2009 19:06:10 -0000 Received: (qmail 98006 invoked by uid 500); 18 May 2009 19:06:09 -0000 Delivered-To: apmail-hadoop-hbase-dev-archive@hadoop.apache.org Received: (qmail 97980 invoked by uid 500); 18 May 2009 19:06:09 -0000 Mailing-List: contact hbase-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hbase-dev@hadoop.apache.org Delivered-To: mailing list hbase-dev@hadoop.apache.org Received: (qmail 97970 invoked by uid 99); 18 May 2009 19:06:09 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 May 2009 19:06:09 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 May 2009 19:06:06 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 8CD0E29A0011 for ; Mon, 18 May 2009 12:05:45 -0700 (PDT) Message-ID: <510965777.1242673545563.JavaMail.jira@brutus> Date: Mon, 18 May 2009 12:05:45 -0700 (PDT) From: "Lars George (JIRA)" To: hbase-dev@hadoop.apache.org Subject: [jira] Updated: (HBASE-1435) HRegionServer is using wrong info bind address from hbase-site.xml In-Reply-To: <1837473371.1242673185598.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HBASE-1435?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Lars George updated HBASE-1435: ------------------------------- Attachment: 1435.patch Patch fixes the property key. > 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 > Assignee: Lars George > Fix For: 0.19.3 > > Attachments: 1435.patch > > > 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.