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
Better setting of in-app in stack frames (getsentry#1894)
How the in_app flag is set in stack trace frames (in set_in_app_in_frames()):
- If there is already in_app set, it is left untouched.
- If there is a module in the frame and it is in the in_app_includes -> in_app=True
- If there is a module in the frame and it is in the in_app_excludes -> in_app=False
- If there is an abs_path in the frame and the path is in /side-packages/ or /dist-packages/ -> in_app=False
- If there is an abs_path in the frame and it starts with the current working directory of the process -> in_app=True
- If nothing of the above is true, there will be no in_app set.
Fixesgetsentry#1754Fixesgetsentry#320
0 commit comments