HBASE-26474 Implement connection-level attributes (addendum)
Addressing additional comments raised in branch-2 backport PR #4014
This commit is contained in:
parent
625d610bcc
commit
2be39588be
|
@ -271,11 +271,6 @@ abstract class AbstractRpcBasedConnectionRegistry implements ConnectionRegistry
|
|||
getClass().getSimpleName() + ".getClusterId");
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getConnectionString() {
|
||||
return "unimplemented";
|
||||
}
|
||||
|
||||
@Override
|
||||
public void close() {
|
||||
trace(() -> {
|
||||
|
|
|
@ -167,6 +167,10 @@ public class TestRpcBasedRegistryHedgedReads {
|
|||
protected CompletableFuture<Set<ServerName>> fetchEndpoints() {
|
||||
return CompletableFuture.completedFuture(BOOTSTRAP_NODES);
|
||||
}
|
||||
|
||||
@Override public String getConnectionString() {
|
||||
return "unimplemented";
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue