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
Package version (if known): 1.30
The following error can occurs with the new version of sentry-sdk:
sentry-sdk
def api_errorhandler(e): if isinstance(e, RESTException): return e.get_response() elif isinstance(e, HTTPException) and e.description: kwargs["message"] = e.description if kwargs.get("status", 400) >= 500: > sentry_event_id = sentry_sdk.last_event_id() E AttributeError: module 'sentry_sdk' has no attribute 'last_event_id' site-packages/invenio_rest/views.py:44: AttributeError
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Package version (if known): 1.30
Describe the bug
The following error can occurs with the new version of
sentry-sdk
:The text was updated successfully, but these errors were encountered: