From 39feb627a8f6981389a5ec3e341196eadf2c1e03 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Tue, 12 Oct 2021 12:02:04 -0400 Subject: [PATCH] Disable frame hides in portal temporarily --- tractor/_portal.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tractor/_portal.py b/tractor/_portal.py index b73f4a3..e327da5 100644 --- a/tractor/_portal.py +++ b/tractor/_portal.py @@ -138,7 +138,7 @@ class Portal: resptype: str, first_msg: dict ) -> Any: - __tracebackhide__ = True + # __tracebackhide__ = True assert resptype == 'asyncfunc' # single response msg = await recv_chan.receive() @@ -154,7 +154,7 @@ class Portal: Return the result(s) from the remote actor's "main" task. """ - __tracebackhide__ = True + # __tracebackhide__ = True # Check for non-rpc errors slapped on the # channel for which we always raise exc = self.channel._exc