From 7950b41c4ac36f21009ec01c3d045e5cedef6370 Mon Sep 17 00:00:00 2001 From: Danny Willems Date: Tue, 9 Sep 2025 14:31:10 +0200 Subject: [PATCH] Node/solo-node-bootstrap: increase timeout at 60 minutes --- node/testing/src/scenarios/solo_node/bootstrap.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/testing/src/scenarios/solo_node/bootstrap.rs b/node/testing/src/scenarios/solo_node/bootstrap.rs index d1a4833e7..b6cb9211d 100644 --- a/node/testing/src/scenarios/solo_node/bootstrap.rs +++ b/node/testing/src/scenarios/solo_node/bootstrap.rs @@ -42,7 +42,7 @@ impl SoloNodeBootstrap { pub async fn run(self, mut runner: ClusterRunner<'_>) { use self::TransitionFrontierSyncState::*; - const TIMEOUT: Duration = Duration::from_secs(60 * 40); + const TIMEOUT: Duration = Duration::from_secs(60 * 60); let replayer = hosts::replayer();