From 3723530cf610e784adf5c94ec1c723b58ce7b193 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Mon, 1 Jan 2024 09:44:16 -0500 Subject: [PATCH] Further increase re-attempt timeouts in CI --- coordinator/src/tributary/db.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coordinator/src/tributary/db.rs b/coordinator/src/tributary/db.rs index 27fef1f0..09a27fb6 100644 --- a/coordinator/src/tributary/db.rs +++ b/coordinator/src/tributary/db.rs @@ -136,7 +136,7 @@ impl ReattemptDb { // 10 minutes, intended for latent environments like the GitHub CI #[cfg(feature = "longer-reattempts")] - const BASE_REATTEMPT_DELAY: u32 = (10 * 60 * 1000) / tributary::tendermint::TARGET_BLOCK_TIME; + const BASE_REATTEMPT_DELAY: u32 = (15 * 60 * 1000) / tributary::tendermint::TARGET_BLOCK_TIME; // 5 minutes for attempts 0 ..= 2, 10 minutes for attempts 3 ..= 5, 15 minutes for attempts > 5 // Assumes no event will take longer than 15 minutes, yet grows the time in case there are