mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
fix time calc after time driver stop
This commit is contained in:
parent
c3016a1ae9
commit
862530b1a0
1 changed files with 4 additions and 2 deletions
|
@ -566,8 +566,10 @@ impl Future for TimerDriver {
|
|||
|
||||
if inner.flags.contains(Flags::DRIVER_RECALC) {
|
||||
inner.flags.remove(Flags::DRIVER_RECALC);
|
||||
let deadline =
|
||||
Instant::now() + Duration::from_millis(inner.next_expiry_ms());
|
||||
let now = Instant::now();
|
||||
let deadline = now
|
||||
+ Duration::from_millis(inner.next_expiry_ms())
|
||||
.saturating_sub(now - inner.elapsed_time());
|
||||
Pin::as_mut(&mut inner.driver_sleep).reset(deadline);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue