Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions dc/s2n-quic-dc/src/stream/tests/restart.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ impl Harness {
for sleep_before_shutdown in [false, true] {
dbg!(bidirectional, sleep_before_shutdown);
let task = self.run_one(bidirectional, sleep_before_shutdown);
tokio::time::timeout(core::time::Duration::from_secs(60), task)
tokio::time::timeout(core::time::Duration::from_secs(90), task)
.await
.expect("test timed out after 60 seconds");
.expect("test timed out after 90 seconds");
}
}
}
Expand Down Expand Up @@ -143,7 +143,7 @@ impl Harness {
);

// Wait for the asynchronous background handshake.
tokio::time::sleep(Duration::from_millis(50)).await;
tokio::time::sleep(Duration::from_secs(2)).await;

check_stream(&context, bidirectional, sleep_before_shutdown)
.instrument(info_span!("four"))
Expand Down
Loading