mirror of
https://github.com/serai-dex/serai.git
synced 2025-01-18 16:55:16 +00:00
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.
This commit is contained in:
parent
72337b17f5
commit
bc2f23f72b
1 changed files with 1 additions and 1 deletions
|
@ -43,6 +43,6 @@ pub(crate) fn new_test() -> (Vec<(Handles, <Ristretto as Ciphersuite>::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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue