ptupitsyn commented on code in PR #5305:
URL: https://github.com/apache/ignite-3/pull/5305#discussion_r1971840081


##########
modules/client/src/main/java/org/apache/ignite/internal/client/ReliableChannel.java:
##########
@@ -929,4 +931,18 @@ private boolean 
isFutureInProgressOrDoneAndChannelOpen(@Nullable CompletableFutu
             return ch != null && !ch.closed();
         }
     }
+
+    private void logFailedEstablishConnection(ClientChannelHolder ch, 
Throwable err) {
+        String logMessage = "Failed to establish connection to " + 
ch.chCfg.getAddress() + ": " + err.getMessage();
+
+        if (log.isDebugEnabled() || 
isLogFailedEstablishConnectionException(err)) {
+            log.warn(logMessage, err);

Review Comment:
   We check for debug level, but log as a warning? Should it be `log.debug()`?



##########
modules/client/src/main/java/org/apache/ignite/internal/client/ReliableChannel.java:
##########
@@ -929,4 +931,18 @@ private boolean 
isFutureInProgressOrDoneAndChannelOpen(@Nullable CompletableFutu
             return ch != null && !ch.closed();
         }
     }
+
+    private void logFailedEstablishConnection(ClientChannelHolder ch, 
Throwable err) {
+        String logMessage = "Failed to establish connection to " + 
ch.chCfg.getAddress() + ": " + err.getMessage();
+
+        if (log.isDebugEnabled() || 
isLogFailedEstablishConnectionException(err)) {
+            log.warn(logMessage, err);
+        } else {
+            log.info(logMessage);
+        }
+    }
+
+    private static boolean isLogFailedEstablishConnectionException(Throwable 
err) {
+        return hasCauseOrSuppressed(err, "Connection refused", 
ConnectException.class);

Review Comment:
   What is the idea here, why "Connection refused" is more important than other 
errors?



-- 
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: notifications-unsubscr...@ignite.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to