You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2021/04/07 14:57:27 UTC

[hbase] branch master updated: HBASE-25735 Add target Region to connection exceptions Addendum to fix broke compile.

This is an automated email from the ASF dual-hosted git repository.

stack pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/master by this push:
     new d9f4f41   HBASE-25735 Add target Region to connection exceptions Addendum to fix broke compile.
d9f4f41 is described below

commit d9f4f41f76242a8fcd3ac6e04edbe9a0c8374b40
Author: stack <st...@apache.org>
AuthorDate: Wed Apr 7 07:56:25 2021 -0700

     HBASE-25735 Add target Region to connection exceptions
    Addendum to fix broke compile.
---
 .../java/org/apache/hadoop/hbase/client/AsyncRegionServerAdmin.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/client/AsyncRegionServerAdmin.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/client/AsyncRegionServerAdmin.java
index cb06137..8ff869f 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/client/AsyncRegionServerAdmin.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/client/AsyncRegionServerAdmin.java
@@ -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>() {