Skip to content

Commit

Permalink
Reduces timeout for e2e tests channel
Browse files Browse the repository at this point in the history
  • Loading branch information
grarco committed Oct 8, 2024
1 parent be9f0fa commit e2ad712
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/tests/src/e2e/setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,7 @@ impl NamadaCmd {
let join_handle = std::thread::spawn(move || {
let mut cmd = self;
loop {
match abort_recv.recv_timeout(Duration::from_secs(60)) {
match abort_recv.recv_timeout(Duration::from_secs(5)) {
Ok(ControlCode::EndOfText) => {
// Terminate the background task by dropping the
// corresponding NamadaCmd
Expand Down

0 comments on commit e2ad712

Please sign in to comment.