give initial start more time

This commit is contained in:
Bryan Stitt 2023-10-13 00:22:38 -07:00
parent 51ba539800
commit 0769e26afb

View File

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