HBASE-26474 Implement connection-level attributes (addendum)
Addressing additional comments raised in branch-2 backport PR #4014
This commit is contained in:
parent
6d739de5be
commit
4aa31ce0cd
|
@ -272,11 +272,6 @@ abstract class AbstractRpcBasedConnectionRegistry implements ConnectionRegistry
|
|||
getClass().getSimpleName() + ".getActiveMaster");
|
||||
}
|
||||
|
||||
@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