Skip to content

Commit

Permalink
Fix core errors
Browse files Browse the repository at this point in the history
  • Loading branch information
peterrsongg committed Aug 7, 2024
1 parent 5e3c137 commit e97d4c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ private bool IsClockskew(IExecutionContext executionContext, Exception exception
var absDiff = diff.Ticks < 0 ? -diff : diff;

Logger.InfoFormat(clockSkewMessageFormat,
realNow, correctedNow, clientConfig.ClockOffset, serverTime, endpoint);
realNow, correctedNow, CorrectClockSkew.GetClockCorrectionForEndpoint(endpoint), serverTime, endpoint);

// Always set the correction, for informational purposes
CorrectClockSkew.SetClockCorrectionForEndpoint(endpoint, newCorrection);
Expand Down

0 comments on commit e97d4c9

Please sign in to comment.