Skip to content

Commit

Permalink
Merge branch 'main' into flub/gossip-no-quinn
Browse files Browse the repository at this point in the history
  • Loading branch information
flub authored Aug 29, 2024
2 parents aaceb16 + 05fff6a commit 5ceff45
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions iroh-net/src/magicsock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1244,7 +1244,7 @@ impl MagicSock {
}

/// Triggers an address discovery. The provided why string is for debug logging only.
#[instrument(skip_all, fields(me = %self.me))]
#[instrument(skip_all)]
fn re_stun(&self, why: &'static str) {
debug!("re_stun: {}", why);
inc!(MagicsockMetrics, re_stun_calls);
Expand Down Expand Up @@ -1371,8 +1371,8 @@ impl Handle {
);
}

Self::with_name(me.clone(), opts)
.instrument(error_span!("magicsock", %me))
Self::with_name(me, opts)
.instrument(error_span!("magicsock"))
.await
}

Expand Down

0 comments on commit 5ceff45

Please sign in to comment.