Skip to content

Commit ed13453

Browse files
authored
tests(iroh-net): Give this a longer timeout (#2857)
## Description On windows this sometimes times out. But the timeout was only 5 seconds and we know our windows CI runners are slow usually. 5s really isn't enough. If this timeout still occurs with a 30s timeout maybe we can do some more debugging, but it is rather likely just a slow machine. ## Breaking Changes <!-- Optional, if there are any breaking changes document them, including how to migrate older code. --> ## Notes & open questions <!-- Any notes, remarks or open questions you have to make about the PR. --> ## Change checklist - [x] Self-review. - [x] Documentation updates following the [style guide](https://rust-lang.github.io/rfcs/1574-more-api-documentation-conventions.html#appendix-a-full-conventions-text), if relevant. - [x] Tests if relevant. - [x] All breaking changes documented.
1 parent 6c6827d commit ed13453

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iroh-net/src/endpoint.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1505,7 +1505,7 @@ mod tests {
15051505
);
15061506

15071507
let (server, client) = tokio::time::timeout(
1508-
Duration::from_secs(5),
1508+
Duration::from_secs(30),
15091509
futures_lite::future::zip(server, client),
15101510
)
15111511
.await

0 commit comments

Comments
 (0)