HBASE-25735 Add target Region to connection exceptions
Addendum to fix broke compile.
This commit is contained in:
parent
f4e123630d
commit
d9f4f41f76
|
@ -97,7 +97,7 @@ public class AsyncRegionServerAdmin {
|
|||
|
||||
private <RESP> CompletableFuture<RESP> call(RpcCall<RESP> rpcCall, CellScanner cellScanner) {
|
||||
CompletableFuture<RESP> future = new CompletableFuture<>();
|
||||
HBaseRpcController controller = conn.rpcControllerFactory.newController(cellScanner);
|
||||
HBaseRpcController controller = conn.rpcControllerFactory.newController(null, cellScanner);
|
||||
try {
|
||||
rpcCall.call(conn.getAdminStub(server), controller, new RpcCallback<RESP>() {
|
||||
|
||||
|
|
Loading…
Reference in New Issue