From 62fc4625809e476e3dc9a1beee7f943e46e58670 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Thu, 13 Oct 2022 15:27:04 -0400 Subject: [PATCH] Never double add parent task's error to `ActorNursery` --- tractor/_supervise.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tractor/_supervise.py b/tractor/_supervise.py index b8c8567..1b46433 100644 --- a/tractor/_supervise.py +++ b/tractor/_supervise.py @@ -347,8 +347,6 @@ async def _open_and_supervise_one_cancels_all_nursery( anursery._join_procs.set() except BaseException as err: - - errors[actor.uid] = err # If we error in the root but the debugger is # engaged we don't want to prematurely kill (and # thus clobber access to) the local tty since it