We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a38c55a commit e6b3aabCopy full SHA for e6b3aab
iroh/src/magicsock/remote_map/remote_state/path_state.rs
@@ -48,7 +48,6 @@ impl RemotePathState {
48
source: Source,
49
) {
50
let addrs = addrs.collect::<Vec<_>>();
51
- println!("{:?}", addrs);
52
let now = Instant::now();
53
for addr in addrs {
54
self.paths
@@ -104,10 +103,7 @@ impl RemotePathState {
104
103
let result = match (self.paths.is_empty(), discovery_error) {
105
(false, _) => Ok(()),
106
(true, Some(err)) => Err(err),
107
- (true, None) => {
108
- println!("emit_pending_resolve_requests");
109
- Err(e!(DiscoveryError::NoResults))
110
- }
+ (true, None) => Err(e!(DiscoveryError::NoResults)),
111
};
112
for tx in self.pending_resolve_requests.drain(..) {
113
tx.send(result.clone()).ok();
0 commit comments