mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-17 13:07:54 +02:00
Explicitly destroy zmq object when exiting without actually using it
This commit is contained in:
parent
a3b6ab088c
commit
f1ec281230
1 changed files with 3 additions and 0 deletions
|
|
@ -34,6 +34,9 @@ class ZMQTest (BitcoinTestFramework):
|
|||
])
|
||||
|
||||
def run_test(self):
|
||||
# destroy() required for ubuntu docker hang workaround when
|
||||
# exiting without actually messaging (remove with resolution of #TODO)
|
||||
self.zmqContext.destroy(linger=0)
|
||||
return #TODO
|
||||
self.sync_all()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue