forked from goodboy/tractor
Just drop SIGINT masking; it seems to fix piker crash-hangs
parent
f7b7c3fb93
commit
62ece4327d
|
@ -709,8 +709,8 @@ class Actor:
|
||||||
# Disable sigint handling in children if NOT running in
|
# Disable sigint handling in children if NOT running in
|
||||||
# debug mode; we shouldn't need it thanks to our
|
# debug mode; we shouldn't need it thanks to our
|
||||||
# cancellation machinery.
|
# cancellation machinery.
|
||||||
if 'debug_mode' not in rvs:
|
# if 'debug_mode' not in rvs:
|
||||||
signal.signal(signal.SIGINT, signal.SIG_IGN)
|
# signal.signal(signal.SIGINT, signal.SIG_IGN)
|
||||||
|
|
||||||
return chan, accept_addr
|
return chan, accept_addr
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue