diff options
Diffstat (limited to 'examples/basalt.rs')
-rw-r--r-- | examples/basalt.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/basalt.rs b/examples/basalt.rs index 4ea4f71..91f0982 100644 --- a/examples/basalt.rs +++ b/examples/basalt.rs @@ -128,7 +128,7 @@ async fn main() { async fn sampling_loop(netapp: Arc<NetApp>, basalt: Arc<Basalt>) { loop { - tokio::time::delay_for(Duration::from_secs(10)).await; + tokio::time::sleep(Duration::from_secs(10)).await; let peers = basalt.sample(10); for p in peers { |