HBASE-25735 Add target Region to connection exceptions

Addendum to fix broke compile.
This commit is contained in:
stack 2021-04-07 07:56:25 -07:00
parent f4e123630d
commit d9f4f41f76
1 changed files with 1 additions and 1 deletions

View File

@ -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>() {