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 9f5cd6c commit 25ec296Copy full SHA for 25ec296
iroh/tests/integration.rs
@@ -51,9 +51,10 @@ async fn simple_node_id_based_connection_transfer() -> Result {
51
52
// ensure the server has connected to a relay
53
// and therefore has enough information to publish
54
+ tracing::info!("waiting for server to go online");
55
time::timeout(Duration::from_secs(6), server.online())
56
.await
- .e()?;
57
+ .context("server endpoint took too long to get online")?;
58
59
// Make the server respond to requests with an echo
60
task::spawn({
0 commit comments