Skip to content

Commit

Permalink
Merge pull request #4580 from eval-exec/exec/fix-ci
Browse files Browse the repository at this point in the history
Integration Test: Increase wait_for_sync timeout to 120s
  • Loading branch information
eval-exec authored Aug 12, 2024
2 parents 3b4c3b1 + d998c63 commit 1c8e325
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/src/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -934,7 +934,7 @@ pub fn waiting_for_sync<N: Borrow<Node>>(nodes: &[N]) {
let mut tip_headers: HashSet<ckb_jsonrpc_types::HeaderView> =
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()
Expand Down

0 comments on commit 1c8e325

Please sign in to comment.