summaryrefslogtreecommitdiffstats
path: root/src/commands/endpoint.rs
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@atos.net>2021-05-20 11:54:09 +0200
committerMatthias Beyer <matthias.beyer@atos.net>2021-05-20 11:55:05 +0200
commit9b51bbb5aac1f5dc27d6666f724f3f74be1c13e8 (patch)
treeb8b41965a4f706f4eccda4477606f7f033921d4f /src/commands/endpoint.rs
parent9bec3af8a0a0a53722a6a0fd77a805131707416a (diff)
Update dependency: indicatif 0.15 -> 0.16.1
0.16.1 has been published which fixes the bug introduced by 0.16.0, hence update this dependency. This reverts commit ddbd9629b3188c9f08d023829683c40ab9e1448b. Signed-off-by: Matthias Beyer <matthias.beyer@atos.net>
Diffstat (limited to 'src/commands/endpoint.rs')
-rw-r--r--src/commands/endpoint.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/commands/endpoint.rs b/src/commands/endpoint.rs
index e69dc56..4de51d2 100644
--- a/src/commands/endpoint.rs
+++ b/src/commands/endpoint.rs
@@ -75,7 +75,7 @@ async fn ping(endpoint_names: Vec<EndpointName>,
.map(|endpoint| {
let bar = multibar.add(progress_generator.bar());
bar.set_length(n_pings);
- bar.set_message(&format!("Pinging {}", endpoint.name()));
+ bar.set_message(format!("Pinging {}", endpoint.name()));
async move {
for i in 1..(n_pings + 1) {
@@ -83,14 +83,14 @@ async fn ping(endpoint_names: Vec<EndpointName>,
let r = endpoint.ping().await;
bar.inc(1);
if let Err(e) = r {
- bar.finish_with_message(&format!("Pinging {} failed", endpoint.name()));
+ bar.finish_with_message(format!("Pinging {} failed", endpoint.name()));
return Err(e)
}
tokio::time::sleep(tokio::time::Duration::from_secs(sleep)).await;
}
- bar.finish_with_message(&format!("Pinging {} successful", endpoint.name()));
+ bar.finish_with_message(format!("Pinging {} successful", endpoint.name()));
Ok(())
}
})