Skip to content

Commit c375450

Browse files
authored
Merge pull request #1136 from AntelopeIO/GH-1131-signal-test-timeout
Test: Increase shutdown timeout
2 parents fbbc3e2 + 395494d commit c375450

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/nodeos_signal_throw_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def verifyExceptionShutsdown(node, sig, exception):
4444
if node.isProducer:
4545
node.waitForProducer("defproducera")
4646
node.processUrllibRequest("test_control", "throw_on", {"signal":sig, "exception":exception})
47-
assert node.waitForNodeToExit(timeout=5), f"Node {node.nodeId} did not shutdown on {sig} exception {exception}"
47+
assert node.waitForNodeToExit(timeout=10), f"Node {node.nodeId} did not shutdown on {sig} exception {exception}"
4848
assert not node.verifyAlive(), f"Node {node.nodeId} did not shutdown on {sig} exception {exception}"
4949
assert node.relaunch(), f"Node {node.nodeId} relaunch failed after {sig} exception {exception}"
5050
assert node.waitForHeadToAdvance(), f"Node {node.nodeId} did not advance head after relaunch after {sig} exception {exception}"

0 commit comments

Comments
 (0)