mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
Fix update timer handle with 0 millis, do not keep old bucket
This commit is contained in:
parent
2664a2e66d
commit
bd18c122b4
5 changed files with 16 additions and 4 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [0.1.15] - 2022-02-18
|
||||||
|
|
||||||
|
* Fix update timer handle with 0 millis, do not keep old bucket
|
||||||
|
|
||||||
## [0.1.14] - 2022-02-18
|
## [0.1.14] - 2022-02-18
|
||||||
|
|
||||||
* time::sleep() always sleeps one tick (16 millis) even for 0 millis
|
* time::sleep() always sleeps one tick (16 millis) even for 0 millis
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex-util"
|
name = "ntex-util"
|
||||||
version = "0.1.14"
|
version = "0.1.15"
|
||||||
authors = ["ntex contributors <team@ntex.rs>"]
|
authors = ["ntex contributors <team@ntex.rs>"]
|
||||||
description = "Utilities for ntex framework"
|
description = "Utilities for ntex framework"
|
||||||
keywords = ["network", "framework", "async", "futures"]
|
keywords = ["network", "framework", "async", "futures"]
|
||||||
|
|
|
@ -286,6 +286,7 @@ mod tests {
|
||||||
#[ntex_macros::rt_test2]
|
#[ntex_macros::rt_test2]
|
||||||
async fn system_time_service_time_does_not_immediately_change() {
|
async fn system_time_service_time_does_not_immediately_change() {
|
||||||
assert_eq!(system_time(), system_time());
|
assert_eq!(system_time(), system_time());
|
||||||
|
assert_eq!(system_time(), query_system_time());
|
||||||
}
|
}
|
||||||
|
|
||||||
/// State Under Test: `system_time()` updates returned value every 1ms period.
|
/// State Under Test: `system_time()` updates returned value every 1ms period.
|
||||||
|
@ -320,6 +321,13 @@ mod tests {
|
||||||
sleep(Millis(1)).await;
|
sleep(Millis(1)).await;
|
||||||
let second_time = now();
|
let second_time = now();
|
||||||
assert!(second_time - first_time >= time::Duration::from_millis(1));
|
assert!(second_time - first_time >= time::Duration::from_millis(1));
|
||||||
|
|
||||||
|
let first_time = now();
|
||||||
|
let fut = sleep(Millis(10000));
|
||||||
|
fut.reset(Millis::ZERO);
|
||||||
|
fut.await;
|
||||||
|
let second_time = now();
|
||||||
|
assert!(second_time - first_time < time::Duration::from_millis(1));
|
||||||
}
|
}
|
||||||
|
|
||||||
#[ntex_macros::rt_test2]
|
#[ntex_macros::rt_test2]
|
||||||
|
|
|
@ -299,8 +299,8 @@ impl Timer {
|
||||||
fn update_timer(inner: &Rc<RefCell<Self>>, hnd: usize, millis: u64) {
|
fn update_timer(inner: &Rc<RefCell<Self>>, hnd: usize, millis: u64) {
|
||||||
let mut slf = inner.borrow_mut();
|
let mut slf = inner.borrow_mut();
|
||||||
if millis == 0 {
|
if millis == 0 {
|
||||||
slf.timers[hnd].bucket = None;
|
|
||||||
slf.remove_timer_bucket(hnd);
|
slf.remove_timer_bucket(hnd);
|
||||||
|
slf.timers[hnd].bucket = None;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -52,9 +52,9 @@ ntex-codec = "0.6.2"
|
||||||
ntex-router = "0.5.1"
|
ntex-router = "0.5.1"
|
||||||
ntex-service = "0.3.1"
|
ntex-service = "0.3.1"
|
||||||
ntex-macros = "0.1.3"
|
ntex-macros = "0.1.3"
|
||||||
ntex-util = "0.1.14"
|
ntex-util = "0.1.15"
|
||||||
ntex-bytes = "0.1.14"
|
ntex-bytes = "0.1.14"
|
||||||
ntex-tls = "0.1.3"
|
ntex-tls = "0.1.4"
|
||||||
ntex-rt = "0.4.3"
|
ntex-rt = "0.4.3"
|
||||||
ntex-io = "0.1.7"
|
ntex-io = "0.1.7"
|
||||||
ntex-tokio = "0.1.3"
|
ntex-tokio = "0.1.3"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue