Skip to content

Commit

Permalink
Fix order
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-janssen committed Oct 31, 2023
1 parent eba13b5 commit 7d7bd99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pympipool/shared/executorbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ def shutdown(self, wait=True, *, cancel_futures=False):
if cancel_futures:
cancel_items_in_queue(que=self._future_queue)
self._future_queue.put({"shutdown": True, "wait": wait})
self._future_queue.join()
self._process.join()
self._future_queue.join()

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

0 comments on commit 7d7bd99

Please sign in to comment.