Crawl for more peers when we exhaust candidates.
This commit is contained in:
parent
afa2c2347f
commit
43b2d35dda
|
|
@ -262,7 +262,10 @@ where
|
||||||
.boxed(),
|
.boxed(),
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
warn!("demand for peers but no available candidates");
|
debug!("demand for peers but no available candidates");
|
||||||
|
candidates.update().await?;
|
||||||
|
// Try to connect to a new peer.
|
||||||
|
let _ = demand_tx.try_send(());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// did a drill sergeant write this? no there's just no Either3
|
// did a drill sergeant write this? no there's just no Either3
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue