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