Return-Path: X-Original-To: apmail-hbase-issues-archive@www.apache.org Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8A6C9186BE for ; Wed, 10 Feb 2016 20:33:18 +0000 (UTC) Received: (qmail 87570 invoked by uid 500); 10 Feb 2016 20:33:18 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 87528 invoked by uid 500); 10 Feb 2016 20:33:18 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 87351 invoked by uid 99); 10 Feb 2016 20:33:18 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 10 Feb 2016 20:33:18 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 2563C2C1F64 for ; Wed, 10 Feb 2016 20:33:18 +0000 (UTC) Date: Wed, 10 Feb 2016 20:33:18 +0000 (UTC) From: "Andrew Purtell (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Assigned] (HBASE-14192) HBASE REST Cluster Constructor with String List MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HBASE-14192?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Andrew Purtell reassigned HBASE-14192: -------------------------------------- Assignee: Andrew Purtell > HBASE REST Cluster Constructor with String List > ----------------------------------------------- > > Key: HBASE-14192 > URL: https://issues.apache.org/jira/browse/HBASE-14192 > Project: HBase > Issue Type: Bug > Components: REST > Affects Versions: 1.0.0, 1.0.1, 1.1.0, 0.98.13, 1.1.1, 1.1.0.1 > Reporter: Rick Kellogg > Assignee: Andrew Purtell > Priority: Minor > > The HBase REST Cluster which takes a list of hostname colon port numbers is not setting the internal list of nodes correctly. > Existing method: > public Cluster(List nodes) { > nodes.addAll(nodes) > } > Corrected method: > public Cluster(List nodes) { > this.nodes.addAll(nodes) > } -- This message was sent by Atlassian JIRA (v6.3.4#6332)