From f6f9b29df0704c33821bdeaa489ca1e6d1addee0 Mon Sep 17 00:00:00 2001
From: Tyler Goodlet <jgbt@protonmail.com>
Date: Mon, 16 Nov 2020 00:07:43 -0500
Subject: [PATCH] Try not masking SIGINT in child processes

---
 tractor/_entry.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tractor/_entry.py b/tractor/_entry.py
index 2f5704827..c59e51301 100644
--- a/tractor/_entry.py
+++ b/tractor/_entry.py
@@ -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}")