You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zh...@apache.org on 2022/07/27 01:21:51 UTC

[hbase] branch master updated: HBASE-27185 Addendum fix a nit problem which is found when cherry-picking to branch-2

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

zhangduo 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 80b366817e8 HBASE-27185 Addendum fix a nit problem which is found when cherry-picking to branch-2
80b366817e8 is described below

commit 80b366817e8a70c19b1ab5c7e04fecda074cbc47
Author: Duo Zhang <zh...@apache.org>
AuthorDate: Wed Jul 27 09:21:02 2022 +0800

    HBASE-27185 Addendum fix a nit problem which is found when cherry-picking to branch-2
---
 .../apache/hadoop/hbase/security/NettyHBaseSaslRpcClientHandler.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/security/NettyHBaseSaslRpcClientHandler.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/security/NettyHBaseSaslRpcClientHandler.java
index d4d5cb39746..34f9359e4ea 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/security/NettyHBaseSaslRpcClientHandler.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/security/NettyHBaseSaslRpcClientHandler.java
@@ -93,7 +93,7 @@ public class NettyHBaseSaslRpcClientHandler extends SimpleChannelInboundHandler<
       LOG.trace("SASL negotiation for {} is complete", provider.getSaslAuthMethod().getName());
     }
     ChannelPipeline p = ctx.pipeline();
-    saslRpcClient.setupSaslHandler(ctx.pipeline());
+    saslRpcClient.setupSaslHandler(p);
     p.remove(SaslChallengeDecoder.class);
     p.remove(this);