Skip to content

Commit

Permalink
Remove the reference to the future queue on shutdown
Browse files Browse the repository at this point in the history
It has no impact on the tests here, and without this change the pyiron_workflow tests hang
  • Loading branch information
liamhuber committed Nov 8, 2023
1 parent c934f45 commit c0f519d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pympipool/shared/executorbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ def shutdown(self, wait=True, *, cancel_futures=False):
self._process.join()
self._future_queue.join()
self._process = None
self._future_queue = None

def __len__(self):
return self._future_queue.qsize()
Expand Down

0 comments on commit c0f519d

Please sign in to comment.