Skip to content

Commit

Permalink
fix(net): correctly track dial errors (#1706)
Browse files Browse the repository at this point in the history
Fixes #1702
  • Loading branch information
dignifiedquire authored Oct 23, 2023
1 parent d07e225 commit 92bb5b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iroh-net/src/derp/http/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1087,7 +1087,7 @@ impl Actor {
return Ok((conn, node));
}
Err(e) => {
warn!("dial join error: {:?}", e);
errs.push(ClientError::DialTask(e));
}
Ok(Err(e)) => {
errs.push(e);
Expand Down

0 comments on commit 92bb5b4

Please sign in to comment.