Cyrill commented on code in PR #7287:
URL: https://github.com/apache/ignite-3/pull/7287#discussion_r2646233647
##########
modules/raft/src/main/java/org/apache/ignite/internal/raft/RetryContext.java:
##########
@@ -207,29 +210,28 @@ RetryContext nextAttemptForUnavailablePeer(Peer
newTargetPeer, String shortReaso
}
TimeoutException createTimeoutException() {
- long ct = System.currentTimeMillis();
-
return new TimeoutException(format(
"Send with retry timed out [retryCount = {}, groupId = {},
traceId = {}, request = {}, originCommand = {},"
- + " retryReasons = {}, stopTime = {}, currentTime =
{}, startTime = {}, duration = {}].",
+ + " retryReasons = {}, stopTime = {}, currentTime =
{}, startTime = {}, duration = {}, currentWallTime = {}].",
retryCount,
groupId,
errorTraceId,
request.toStringForLightLogging(),
originDescription.get(),
retryReasons.toString(),
stopTime,
- ct,
+ Utils.monotonicMs(),
Review Comment:
fixed
--
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]