From a7a9975e42366ed470e09413175b3f673a42fb45 Mon Sep 17 00:00:00 2001 From: Thomas Niederberger <781000+Niederb@users.noreply.github.com> Date: Wed, 9 Aug 2023 07:38:13 +0200 Subject: [PATCH] Increase timeout value (#642) * Increase timeout value * Increase timestamp again --- examples/examples/runtime_update_async.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/examples/runtime_update_async.rs b/examples/examples/runtime_update_async.rs index 27a9afe1b..4de20e52f 100644 --- a/examples/examples/runtime_update_async.rs +++ b/examples/examples/runtime_update_async.rs @@ -80,7 +80,7 @@ async fn main() { // To prevent blocking forever we create another future that cancels the // wait after some time tokio::spawn(async move { - tokio::time::sleep(std::time::Duration::from_secs(5)).await; + tokio::time::sleep(std::time::Duration::from_secs(20)).await; cloned_token.cancel(); println!("Cancelling wait for runtime update"); });