denis-chudov commented on code in PR #6389: URL: https://github.com/apache/ignite-3/pull/6389#discussion_r2263146064
########## modules/partition-replicator/src/main/java/org/apache/ignite/internal/partition/replicator/ZonePartitionReplicaListener.java: ########## @@ -296,6 +327,21 @@ private CompletableFuture<?> processZoneReplicaRequest(ReplicaRequest request, R return completedFuture(new ReplicaResult(null, null)); } + private void tryToLogTimeoutFailure(Throwable timeoutException) { + int currentAttempt = timeoutedAttemptsCounter.incrementAndGet(); + + if (currentAttempt < MAXIMUM_ATTEMPTS_WITHOUT_LOGGING) { + return; + } + + safeTimeTimeoutLogger.warn( + "Failed to sync safe time for partition [groupId={}, attempt={}].", Review Comment: ```suggestion "Failed to sync safe time for partition, the same kind of issue may affect all other replicas on this node [groupId={}, attempt={}].", ``` -- 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