forked from goodboy/tractor
1
0
Fork 0

Just drop SIGINT masking; it seems to fix piker crash-hangs

prehardkill
Tyler Goodlet 2021-06-15 17:54:42 -04:00
parent f7b7c3fb93
commit 62ece4327d
1 changed files with 2 additions and 2 deletions

View File

@ -709,8 +709,8 @@ class Actor:
# Disable sigint handling in children if NOT running in
# debug mode; we shouldn't need it thanks to our
# cancellation machinery.
if 'debug_mode' not in rvs:
signal.signal(signal.SIGINT, signal.SIG_IGN)
# if 'debug_mode' not in rvs:
# signal.signal(signal.SIGINT, signal.SIG_IGN)
return chan, accept_addr