From bc2f23f72b008c758bde4a17e834bb85aef07569 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Sun, 27 Aug 2023 01:26:42 -0400 Subject: [PATCH] Further increase GH timeout in response to https://github.com/serai-dex/serai/actions/runs/5988202109/job/16243154650 This should be egregious unless the GitHub CI is so inperformant it's breaking Tendermint consensus's synchrony expectations, which likely points to our own code being unviable. This solely serves as an immediate fix to the problem, not a justification of the unevaluated performance. --- tests/coordinator/src/tests/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/coordinator/src/tests/mod.rs b/tests/coordinator/src/tests/mod.rs index 0e07d835..72d30906 100644 --- a/tests/coordinator/src/tests/mod.rs +++ b/tests/coordinator/src/tests/mod.rs @@ -43,6 +43,6 @@ pub(crate) fn new_test() -> (Vec<(Handles, ::F)>, Dock pub(crate) async fn wait_for_tributary() { tokio::time::sleep(Duration::from_secs(20)).await; if std::env::var("GITHUB_CI") == Ok("true".to_string()) { - tokio::time::sleep(Duration::from_secs(40)).await; + tokio::time::sleep(Duration::from_secs(60)).await; } }