From d998c6388c904abac15c2d897f9bc67d6a6d258b Mon Sep 17 00:00:00 2001 From: Eval EXEC Date: Mon, 12 Aug 2024 15:44:14 +0800 Subject: [PATCH] Integration Test: Increase wait_for_sync timeout to 120s --- test/src/node.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/node.rs b/test/src/node.rs index 66a29eeeb2..23bf5f4e9d 100644 --- a/test/src/node.rs +++ b/test/src/node.rs @@ -934,7 +934,7 @@ pub fn waiting_for_sync>(nodes: &[N]) { let mut tip_headers: HashSet = HashSet::with_capacity(nodes.len()); // 60 seconds is a reasonable timeout to sync, even for poor CI server - let synced = wait_until(60, || { + let synced = wait_until(120, || { tip_headers = nodes .as_ref() .iter()