Skip to content

Commit

Permalink
Don't wait on deletion
Browse files Browse the repository at this point in the history
  • Loading branch information
liamhuber committed Nov 8, 2023
1 parent a81412d commit 4a229d4
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 @@ -62,7 +62,7 @@ def __len__(self):

def __del__(self):
try:
self.shutdown(wait=True)
self.shutdown(wait=False)
except (AttributeError, RuntimeError):
pass

Expand Down

0 comments on commit 4a229d4

Please sign in to comment.