Skip to content

Commit

Permalink
Increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
rakanalh committed Jan 22, 2025
1 parent e6140b2 commit 50731bf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/test_case.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,22 +47,22 @@ impl<T: TestCase> TestCaseRunner<T> {

if let Some(sequencer) = &f.sequencer {
sequencer
.wait_for_ready(Some(Duration::from_secs(5)))
.wait_for_ready(Some(Duration::from_secs(10)))
.await?;
}
if let Some(batch_prover) = &f.batch_prover {
batch_prover
.wait_for_ready(Some(Duration::from_secs(5)))
.wait_for_ready(Some(Duration::from_secs(10)))
.await?;
}
if let Some(light_client_prover) = &f.light_client_prover {
light_client_prover
.wait_for_ready(Some(Duration::from_secs(5)))
.wait_for_ready(Some(Duration::from_secs(10)))
.await?;
}
if let Some(full_node) = &f.full_node {
full_node
.wait_for_ready(Some(Duration::from_secs(5)))
.wait_for_ready(Some(Duration::from_secs(10)))
.await?;
}

Expand Down

0 comments on commit 50731bf

Please sign in to comment.