Skip to content

Commit 34f9b3e

Browse files
committed
HBASE-26350 Add a DEBUG when we fail the SASL handshake
Closes #3743 Signed-off-by: Pankaj <pankajkumar@apache.org> Signed-off-by: Tak Lon (Stephen) Wu <taklwu@apache.org> Signed-off-by: Wellington Chevreuil <wchevreuil@apache.org>
1 parent 5128f4d commit 34f9b3e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/ServerRpcConnection.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -364,6 +364,7 @@ public void saslReadAndProcess(ByteBuff saslToken) throws IOException,
364364
replyToken = saslServer.evaluateResponse(saslToken.hasArray()?
365365
saslToken.array() : saslToken.toBytes());
366366
} catch (IOException e) {
367+
RpcServer.LOG.debug("Failed to execute SASL handshake", e);
367368
IOException sendToClient = e;
368369
Throwable cause = e;
369370
while (cause != null) {

0 commit comments

Comments
 (0)