Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Iterate on Sentry filtering #7292
Iterate on Sentry filtering #7292
Changes from 51 commits
1743eb6
f99b462
08ad307
696c836
7091bda
42973d3
dedd3db
f198340
1570f89
9ebe06b
9fe3ac4
be2aa57
ff34f68
810ae24
080e004
d98490f
cc60508
373756d
86b0896
595b61e
f904639
bbe8e26
e562f0c
c56e1d9
82fa43c
f9d5c42
365c3ef
d1b26ca
84cacce
ce6a01d
72060bb
8cb99fc
d9196f8
1f567d7
628ab24
e82d6af
1a51322
4ac7d4c
ad0bef1
405bc67
bbe8509
307364a
48f262b
c53a30b
20adc15
c107594
8a2852c
ffb283f
230c773
9d8f2a7
593d8b7
5a9b83b
0e7f141
8bb8ab4
ece18bc
edcd70f
536c02a
436c828
3628341
7432444
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
technically also a
TypeError
in caseimport_module
failsThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not sure I follow 🤔 doesn't it raise a
ModuleNotFoundError
which inheritsImportError
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import_module
in 3.8.6 also raises aTypeError
which inherits fromException
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🤔 yeah ok. It sounds a bit more like a detail. Fine if I keep it like it is?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be more transparent for the caller as they'd know which errors to handle without having to dive deeper into the code, but up to you as it's a detail as you said.