Details
Description
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)
}