You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Andrew Kyle Purtell (Jira)" <ji...@apache.org> on 2022/07/01 20:50:00 UTC

[jira] [Closed] (HBASE-14192) Fix REST Cluster constructor with String List

     [ https://issues.apache.org/jira/browse/HBASE-14192?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andrew Kyle Purtell closed HBASE-14192.
---------------------------------------

> 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: Richard Kellog Jr.
>            Assignee: Andrew Kyle Purtell
>            Priority: Minor
>             Fix For: 1.2.0, 1.3.0, 1.1.4, 0.98.18, 2.0.0
>
>         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
(v8.20.10#820010)