Skip to content

Commit

Permalink
Merge pull request #1136 from AntelopeIO/GH-1131-signal-test-timeout
Browse files Browse the repository at this point in the history
Test: Increase shutdown timeout
  • Loading branch information
heifner authored Jan 29, 2025
2 parents fbbc3e2 + 395494d commit c375450
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/nodeos_signal_throw_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def verifyExceptionShutsdown(node, sig, exception):
if node.isProducer:
node.waitForProducer("defproducera")
node.processUrllibRequest("test_control", "throw_on", {"signal":sig, "exception":exception})
assert node.waitForNodeToExit(timeout=5), f"Node {node.nodeId} did not shutdown on {sig} exception {exception}"
assert node.waitForNodeToExit(timeout=10), f"Node {node.nodeId} did not shutdown on {sig} exception {exception}"
assert not node.verifyAlive(), f"Node {node.nodeId} did not shutdown on {sig} exception {exception}"
assert node.relaunch(), f"Node {node.nodeId} relaunch failed after {sig} exception {exception}"
assert node.waitForHeadToAdvance(), f"Node {node.nodeId} did not advance head after relaunch after {sig} exception {exception}"
Expand Down

0 comments on commit c375450

Please sign in to comment.