From 62ece4327d5a881d4e53b2da441936cdca91decb Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Tue, 15 Jun 2021 17:54:42 -0400 Subject: [PATCH] Just drop SIGINT masking; it seems to fix piker crash-hangs --- tractor/_actor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tractor/_actor.py b/tractor/_actor.py index c65d8b2..ea27492 100644 --- a/tractor/_actor.py +++ b/tractor/_actor.py @@ -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