Skip to content

Commit 30c828b

Browse files
authored
Increase timeout for check_nodes_in_sync (#20172)
1 parent 86cb746 commit 30c828b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chia/_tests/core/full_node/test_full_node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2713,7 +2713,7 @@ def check_nodes_in_sync() -> bool:
27132713
p2 = full_node_1.full_node.blockchain.get_peak()
27142714
return p1 == p2
27152715

2716-
await time_out_assert(300, check_nodes_in_sync)
2716+
await time_out_assert(600, check_nodes_in_sync)
27172717
peak = full_node_2.full_node.blockchain.get_peak()
27182718
assert peak is not None
27192719
print(f"peak: {str(peak.header_hash)[:6]}")

0 commit comments

Comments
 (0)