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

elserj pushed a commit to branch branch-2.3
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2.3 by this push:
     new 34f9b3e  HBASE-26350 Add a DEBUG when we fail the SASL handshake
34f9b3e is described below

commit 34f9b3e85820df92131809042865430a024a35f5
Author: Josh Elser <els...@apache.org>
AuthorDate: Mon Oct 11 17:01:06 2021 -0400

    HBASE-26350 Add a DEBUG when we fail the SASL handshake
    
    Closes #3743
    
    Signed-off-by: Pankaj <pankajku...@apache.org>
    Signed-off-by: Tak Lon (Stephen) Wu <tak...@apache.org>
    Signed-off-by: Wellington Chevreuil <wchevre...@apache.org>
---
 .../src/main/java/org/apache/hadoop/hbase/ipc/ServerRpcConnection.java   | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/ServerRpcConnection.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/ServerRpcConnection.java
index 29ce30b..03478e4 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/ServerRpcConnection.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/ServerRpcConnection.java
@@ -364,6 +364,7 @@ abstract class ServerRpcConnection implements Closeable {
         replyToken = saslServer.evaluateResponse(saslToken.hasArray()?
             saslToken.array() : saslToken.toBytes());
       } catch (IOException e) {
+        RpcServer.LOG.debug("Failed to execute SASL handshake", e);
         IOException sendToClient = e;
         Throwable cause = e;
         while (cause != null) {

Reply via email to