Skip to content

Commit

Permalink
GH-13 Larger timeout needed as all but one producer are not producing
Browse files Browse the repository at this point in the history
  • Loading branch information
heifner committed Apr 30, 2024
1 parent a0b550e commit 92d407b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/disaster_recovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@

# node0 is likely to have higher lib than 1,2,3 since it can incorporate QCs in blocks
Print("Wait for node 0 to advance")
assert node0.waitForHeadToAdvance(blocksToAdvance=2), "Node0 did not advance"
# 4 producers, 3 of which are not producing, wait for 4 rounds to make sure node0 defproducera has time to produce
assert node0.waitForHeadToAdvance(blocksToAdvance=2, timeout=4*6), "Node0 did not advance"
node0.kill(signal.SIGTERM)
assert not node0.verifyAlive(), "Node0 did not shutdown"

Expand Down

0 comments on commit 92d407b

Please sign in to comment.