You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We tried to fix clock diff spikes in #1474 but it didn't work since it only fixes the RTT calculation. It doesn't fix the "sentAt" part of the calculation which still include connection opening delay.
Proposed solution
Instead of using sentAt+rtt/2 to calculate expectedSentAt, use now()-rtt/2.
The text was updated successfully, but these errors were encountered:
Problem to be solved
We tried to fix clock diff spikes in #1474 but it didn't work since it only fixes the RTT calculation. It doesn't fix the "sentAt" part of the calculation which still include connection opening delay.
Proposed solution
Instead of using
sentAt+rtt/2
to calculate expectedSentAt, usenow()-rtt/2
.The text was updated successfully, but these errors were encountered: