Skip to content

Commit f6f9b29

Browse files
committed
Try not masking SIGINT in child processes
1 parent 4b7502c commit f6f9b29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tractor/_entry.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def _trio_main(
6262
"""
6363
# Disable sigint handling in children;
6464
# we don't need it thanks to our cancellation machinery.
65-
signal.signal(signal.SIGINT, signal.SIG_IGN)
65+
# signal.signal(signal.SIGINT, signal.SIG_IGN)
6666

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

0 commit comments

Comments
 (0)