We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
So I see the notes about the global exception stack here: https://github.com/airbrake/airbrake-python/blob/master/airbrake/notifier.py#L153
And later I see duplicate exception instances getting filtered out. https://github.com/airbrake/airbrake-python/blob/master/airbrake/notifier.py#L173:
# dont ship the same exception instance twice if exc_info[1] in self._exc_queue: exc_info = None, None, None self._exc_queue.put(exc_info[1])
But I can't see any tests around this to make sure. This is probably not trivial, but it'd be nice to see the case where this is needed.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
So I see the notes about the global exception stack here:
https://github.com/airbrake/airbrake-python/blob/master/airbrake/notifier.py#L153
And later I see duplicate exception instances getting filtered out.
https://github.com/airbrake/airbrake-python/blob/master/airbrake/notifier.py#L173:
But I can't see any tests around this to make sure. This is probably not trivial, but it'd be nice to see the case where this is needed.
The text was updated successfully, but these errors were encountered: