From 47fd88c1c6bc06d485198fa5ccc1bfca9d27153c Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Fri, 13 Oct 2023 20:15:01 -0700 Subject: [PATCH] give longer to start --- web3_proxy_cli/src/test_utils/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web3_proxy_cli/src/test_utils/app.rs b/web3_proxy_cli/src/test_utils/app.rs index 68787f25..2ac912e4 100644 --- a/web3_proxy_cli/src/test_utils/app.rs +++ b/web3_proxy_cli/src/test_utils/app.rs @@ -158,7 +158,7 @@ impl TestApp { let start = Instant::now(); while frontend_port == 0 { // we have to give it some time because it might have to do migrations - if start.elapsed() > Duration::from_secs(10) { + if start.elapsed() > Duration::from_secs(30) { panic!("took too long to start!"); }