Skip to content

Commit

Permalink
Try not masking SIGINT in child processes
Browse files Browse the repository at this point in the history
  • Loading branch information
goodboy committed Aug 3, 2021
1 parent 4b7502c commit f6f9b29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tractor/_entry.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def _trio_main(
"""
# Disable sigint handling in children;
# we don't need it thanks to our cancellation machinery.
signal.signal(signal.SIGINT, signal.SIG_IGN)
# signal.signal(signal.SIGINT, signal.SIG_IGN)

log.info(f"Started new trio process for {actor.uid}")

Expand Down

0 comments on commit f6f9b29

Please sign in to comment.