give it 30 seconds to start

This commit is contained in:
Bryan Stitt 2023-10-11 04:20:59 -07:00
parent e43309abc0
commit 413ee63b45

View File

@ -160,7 +160,10 @@ impl ProxydSubCommand {
// give 30 seconds for the db to connect. if it does not connect, it will keep retrying
}
info!("waiting for head block");
info!("waiting 30 seconds for warm up");
sleep(Duration::from_secs(30)).await;
info!("waiting up to 30 more seconds for a head block");
let max_wait_until = Instant::now() + Duration::from_secs(30);
loop {
select! {