denis-chudov commented on code in PR #5915: URL: https://github.com/apache/ignite-3/pull/5915#discussion_r2152139082
########## modules/transactions/src/main/java/org/apache/ignite/internal/tx/impl/TxManagerImpl.java: ########## @@ -815,8 +811,10 @@ private CompletableFuture<Void> durableFinish( return CompletableFuture.<Void>failedFuture(cause); } - if (TransactionFailureHandler.isRecoverable(cause)) { - LOG.warn("Failed to finish Tx. The operation will be retried [txId={}].", ex, txId); + if (ReplicatorRecoverableExceptions.isRecoverable(cause)) { + if (!(cause instanceof GroupOverloadedException)) { + LOG.warn("Failed to finish Tx. The operation will be retried [txId={}].", ex, txId); Review Comment: switched to debug -- 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