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
10f16a0e4f
commit
ad7d698622
|
@ -372,6 +372,7 @@ abstract class ServerRpcConnection implements Closeable {
|
||||||
replyToken = saslServer.evaluateResponse(saslToken.hasArray()?
|
replyToken = saslServer.evaluateResponse(saslToken.hasArray()?
|
||||||
saslToken.array() : saslToken.toBytes());
|
saslToken.array() : saslToken.toBytes());
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
|
RpcServer.LOG.debug("Failed to execute SASL handshake", e);
|
||||||
IOException sendToClient = e;
|
IOException sendToClient = e;
|
||||||
Throwable cause = e;
|
Throwable cause = e;
|
||||||
while (cause != null) {
|
while (cause != null) {
|
||||||
|
|
Loading…
Reference in New Issue