ptupitsyn commented on code in PR #7817:
URL: https://github.com/apache/ignite-3/pull/7817#discussion_r2959858418
##########
modules/client-handler/src/main/java/org/apache/ignite/client/handler/ClientInboundMessageHandler.java:
##########
@@ -516,6 +517,11 @@ private void handshake(ChannelHandlerContext ctx,
ClientMessageUnpacker unpacker
.thenCompose(unused ->
authenticationManager.authenticateAsync(authReq))
.whenCompleteAsync((user, err) -> {
if (err != null) {
+ if (isAuthenticationException(err)) {
+ LOG.warn("Client authentication failed
[connectionId={}, remoteAddress={}, identity={}]: {}",
Review Comment:
Ok I agree, changed my mind after doing some research. Let's keep the `warn`
level.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]