Merge #10636: [qa] util: Check return code after closing bitcoind proc
999923e
[qa] util: Check return code after closing bitcoind proc (MarcoFalke)
Tree-SHA512: 1aa911e5ce25ef59b006b7f8f25e5eef3c6c31f1b4362564e158ed92dd7804625fccc08be8b98c8c32779b530a8ec988819947692698214e34f5cb1d411c9eda
This commit is contained in:
commit
4bc853b50f
1 changed files with 1 additions and 1 deletions
|
@ -322,8 +322,8 @@ def _stop_node(node, i):
|
|||
except http.client.CannotSendRequest as e:
|
||||
logger.exception("Unable to stop node")
|
||||
return_code = bitcoind_processes[i].wait(timeout=BITCOIND_PROC_WAIT_TIMEOUT)
|
||||
assert_equal(return_code, 0)
|
||||
del bitcoind_processes[i]
|
||||
assert_equal(return_code, 0)
|
||||
|
||||
def _stop_nodes(nodes):
|
||||
"""Stop multiple bitcoind test nodes
|
||||
|
|
Loading…
Reference in a new issue