Skip to content

Commit

Permalink
feat: Increased the timeout of waiting for db in tests (#3007)
Browse files Browse the repository at this point in the history
I don't know about other people's setup, but for me it is very flaky
with just 3s
  • Loading branch information
pompon0 authored Oct 7, 2024
1 parent 741b77e commit eeb1c2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zk_toolbox/crates/zk_supervisor/src/commands/test/db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pub async fn reset_test_databases(
for dal in dals {
let mut url = dal.url.clone();
url.set_path("");
wait_for_db(&url, 3).await?;
wait_for_db(&url, 20).await?;
database::reset::reset_database(shell, link_to_code, dal.clone()).await?;
}

Expand Down

0 comments on commit eeb1c2a

Please sign in to comment.