From 53e04a01a9b18ffc5aba7134d3c4f69ca0142efd Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Mon, 20 Jul 2020 16:06:50 -0400 Subject: [PATCH] Add an obnoxious error message on internal failures --- tractor/_actor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tractor/_actor.py b/tractor/_actor.py index 5d60785..2c91127 100644 --- a/tractor/_actor.py +++ b/tractor/_actor.py @@ -1191,6 +1191,7 @@ class Actor: def is_infected_aio(self) -> bool: return self._infected_aio + class Arbiter(Actor): """A special actor who knows all the other actors and always has access to a top level nursery.