aboutsummaryrefslogtreecommitdiff
path: root/src/time/driver/handle.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/time/driver/handle.rs')
-rw-r--r--src/time/driver/handle.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/time/driver/handle.rs b/src/time/driver/handle.rs
index bfc49fb..e934b56 100644
--- a/src/time/driver/handle.rs
+++ b/src/time/driver/handle.rs
@@ -47,7 +47,7 @@ cfg_rt! {
/// panicking.
pub(crate) fn current() -> Self {
crate::runtime::context::time_handle()
- .expect("there is no timer running, must be called from the context of Tokio runtime")
+ .expect("A Tokio 1.x context was found, but timers are disabled. Call `enable_time` on the runtime builder to enable timers.")
}
}
}
@@ -71,8 +71,7 @@ cfg_not_rt! {
/// lazy, and so outside executed inside the runtime successfuly without
/// panicking.
pub(crate) fn current() -> Self {
- panic!("there is no timer running, must be called from the context of Tokio runtime or \
- `rt` is not enabled")
+ panic!(crate::util::error::CONTEXT_MISSING_ERROR)
}
}
}