Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
dignifiedquire committed Apr 26, 2024
1 parent a2cb330 commit f12562d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iroh-cli/src/commands/doctor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ impl Gui {
.template("{spinner:.green} [{bar:80.cyan/blue}] {msg} {bytes}/{total_bytes} ({bytes_per_sec})").unwrap()
.progress_chars("█▉▊▋▌▍▎▏ "));
let counters2 = counters.clone();
let counter_task = AbortingJoinHandle(tokio::spawn(async move {
let counter_task = AbortingJoinHandle::from(tokio::spawn(async move {
loop {
Self::update_counters(&counters2);
Self::update_connection_info(&conn_info, &endpoint, &node_id);
Expand Down

0 comments on commit f12562d

Please sign in to comment.