You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a traceback is thrown in an actor, is there any way to report the original traceback in the calling actor? Debugging is very hard in Pykka as an exception is shown only with the traceback from the calling actor rather than the traceback leading to the actual cause of the exception.
Taking the counter.py example, let's assume there's an exception in the Adder actor. What we see is:
When a traceback is thrown in an actor, is there any way to report the original traceback in the calling actor? Debugging is very hard in Pykka as an exception is shown only with the traceback from the calling actor rather than the traceback leading to the actual cause of the exception.
Taking the
counter.py
example, let's assume there's an exception in theAdder
actor. What we see is:What I would love to see is:
Is this somehow possible? Am I missing something, or are cross-actor tracebacks not possible?
The text was updated successfully, but these errors were encountered: