diff options
author | Alex Auvolat <alex@adnab.me> | 2021-10-12 13:07:34 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-10-12 13:07:34 +0200 |
commit | 7753b789b7aca87db4db7aed20e79a41ecb0b225 (patch) | |
tree | f5b67a3d52736eb60d88cdd8772957ada62654fb /examples | |
parent | 90f8fb28361cba1087a0e608e8a8deb6abb5bd39 (diff) | |
download | netapp-7753b789b7aca87db4db7aed20e79a41ecb0b225.tar.gz netapp-7753b789b7aca87db4db7aed20e79a41ecb0b225.zip |
Upgrade to tokio 1.0
Diffstat (limited to 'examples')
-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 { |