ascherbakoff commented on code in PR #7052:
URL: https://github.com/apache/ignite-3/pull/7052#discussion_r2580531474


##########
modules/client/src/main/java/org/apache/ignite/internal/client/table/ClientTableMapUtils.java:
##########
@@ -126,7 +127,10 @@ private static <R, C> boolean unlockOnRetry(
             }
             Transaction tx0 = txns.get(i);
             tx0.rollbackAsync().exceptionally(e -> {
-                log.error("Failed to rollback a transactional batch: [tx=" + 
tx0 + ']', e);
+                Throwable cause = unwrapCause(e);
+                if (!(cause instanceof IgniteClientConnectionException)) {

Review Comment:
   We log here any exception which is not instance of 
IgniteClientConnectionException
   This is to avoid log pollution with garbage during client stop.



-- 
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]

Reply via email to