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
{{ message }}
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.
When our logger fills in a stack trace (due to one not present #613) the order of the stack trace is wrong, despite our use of raven's iter_stack_frames. Sentry expects "Frames should be sorted from oldest to newest." https://docs.sentry.io/clientdev/interfaces/stacktrace/
iter_stack_frames goes by python's typical inspect.stack order, in the reverse
The text was updated successfully, but these errors were encountered:
When our logger fills in a stack trace (due to one not present #613) the order of the stack trace is wrong, despite our use of raven's iter_stack_frames. Sentry expects "Frames should be sorted from oldest to newest." https://docs.sentry.io/clientdev/interfaces/stacktrace/
iter_stack_frames goes by python's typical inspect.stack order, in the reverse
The text was updated successfully, but these errors were encountered: