[ 
https://issues.apache.org/jira/browse/HBASE-14192?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15141991#comment-15141991
 ] 

Hudson commented on HBASE-14192:
--------------------------------

SUCCESS: Integrated in HBase-1.1-JDK8 #1745 (See 
[https://builds.apache.org/job/HBase-1.1-JDK8/1745/])
HBASE-14192 Fix REST Cluster Constructor with String List (apurtell: rev 
cf7c6c5a740855b16a9d285024520a6b89dc1c30)
* 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<String> nodes) {
>    nodes.addAll(nodes)
> }
> Corrected method:
> public Cluster(List<String> nodes) {
>    this.nodes.addAll(nodes)
> }



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to