HBASE-27185 Addendum fix a nit problem which is found when cherry-picking to branch-2

This commit is contained in:
Duo Zhang 2022-07-27 09:21:02 +08:00
parent 234cdf7b69
commit 80b366817e
1 changed files with 1 additions and 1 deletions

View File

@ -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);