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 5843618357 for ; Thu, 11 Feb 2016 00:25:19 +0000 (UTC) Received: (qmail 93853 invoked by uid 500); 11 Feb 2016 00:25:18 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 93780 invoked by uid 500); 11 Feb 2016 00:25: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 93466 invoked by uid 99); 11 Feb 2016 00:25:18 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Feb 2016 00:25:18 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 409502C1F60 for ; Thu, 11 Feb 2016 00:25:18 +0000 (UTC) Date: Thu, 11 Feb 2016 00:25:18 +0000 (UTC) From: "Hudson (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HBASE-14192) Fix 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:comment-tabpanel&focusedCommentId=15142020#comment-15142020 ] Hudson commented on HBASE-14192: -------------------------------- SUCCESS: Integrated in HBase-1.2-IT #429 (See [https://builds.apache.org/job/HBase-1.2-IT/429/]) HBASE-14192 Fix REST Cluster Constructor with String List (apurtell: rev c5b6c96193cf466d9dbd4b84526c3a00612ce0f6) * hbase-rest/src/main/java/org/apache/hadoop/hbase/rest/client/Cluster.java > Fix 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 > Fix For: 2.0.0, 1.3.0, 1.2.1, 1.1.4, 0.98.18 > > Attachments: HBASE-14192.patch > > > 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)