From 60791ed54667ec35188fd4bd952883eb939f86fc Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Thu, 20 Apr 2023 19:13:35 -0400 Subject: [PATCH] Oof, fix remaining `Actor.cancel()` in `Actor._from_parent()` --- tractor/_runtime.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tractor/_runtime.py b/tractor/_runtime.py index 84583e9..78f9e4f 100644 --- a/tractor/_runtime.py +++ b/tractor/_runtime.py @@ -998,7 +998,7 @@ class Actor: log.warning( f"Failed to connect to parent @ {parent_addr}," " closing server") - await self.cancel() + await self.cancel(requesting_uid=self.uid) raise async def _serve_forever(