From a06c2e3bcd899f64ef395d08700d8156fc5f56c7 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Mon, 17 Oct 2022 18:45:46 +0200 Subject: [PATCH] wip --- ntex-util/src/time/wheel.rs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/ntex-util/src/time/wheel.rs b/ntex-util/src/time/wheel.rs index b4dc048a..ccfc3347 100644 --- a/ntex-util/src/time/wheel.rs +++ b/ntex-util/src/time/wheel.rs @@ -73,7 +73,8 @@ const fn as_millis(dur: Duration) -> u64 { /// Resolution is 5ms #[inline] pub fn now() -> Instant { - TIMER.with(|t| t.borrow_mut().now(t)) + // TIMER.with(|t| t.borrow_mut().now(t)) + Instant::now() } /// Returns the system time corresponding to “now”. @@ -81,7 +82,8 @@ pub fn now() -> Instant { /// Resolution is 5ms #[inline] pub fn system_time() -> SystemTime { - TIMER.with(|t| t.borrow_mut().system_time(t)) + // TIMER.with(|t| t.borrow_mut().system_time(t)) + SystemTime::now() } /// Returns the system time corresponding to “now”. @@ -90,7 +92,8 @@ pub fn system_time() -> SystemTime { /// This method does not start timer driver. #[inline] pub fn query_system_time() -> SystemTime { - TIMER.with(|t| t.borrow().query_system_time()) + // TIMER.with(|t| t.borrow().query_system_time()) + SystemTime::now() } #[derive(Debug)]