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>
This commit is contained in:
parent
7827b96d16
commit
a372d437b3
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue