Skip to content

Commit

Permalink
Further increase re-attempt timeouts in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kayabaNerve committed Jan 1, 2024
1 parent fffe897 commit 3723530
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coordinator/src/tributary/db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3723530

Please sign in to comment.