Skip to content

Commit

Permalink
HBASE-26474 Implement connection-level attributes (addendum)
Browse files Browse the repository at this point in the history
Addressing additional comments raised in branch-2 backport PR apache#4014
  • Loading branch information
ndimiduk committed Jan 12, 2022
1 parent 1388ca3 commit bd317d9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -271,11 +271,6 @@ public CompletableFuture<ServerName> getActiveMaster() {
getClass().getSimpleName() + ".getClusterId");
}

@Override
public String getConnectionString() {
return "unimplemented";
}

@Override
public void close() {
trace(() -> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,10 @@ protected Set<ServerName> getBootstrapNodes(Configuration conf) throws IOExcepti
protected CompletableFuture<Set<ServerName>> fetchEndpoints() {
return CompletableFuture.completedFuture(BOOTSTRAP_NODES);
}

@Override public String getConnectionString() {
return "unimplemented";
}
};
}

Expand Down

0 comments on commit bd317d9

Please sign in to comment.