sentry_sdk crash on exc_info
See original GitHub issueHi,
Getting this error:
Traceback (most recent call last):
File "/usr/local/lib/python3.7/site-packages/sentry_sdk/integrations/logging.py", line 164, in emit
return self._emit(record)
File "/usr/local/lib/python3.7/site-packages/sentry_sdk/integrations/logging.py", line 178, in _emit
if record.exc_info is not None and record.exc_info[0] is not None:
TypeError: 'int' object is not subscriptable
ver: sentry-sdk[flask,sqlalchemy]==0.14.2
Issue Analytics
- State:
- Created 3 years ago
- Comments:10 (6 by maintainers)
Top Results From Across the Web
iOS | Sentry Documentation
Sentry's SDKs report an error automatically whenever a thrown error or exception goes uncaught in your application, causing the application to crash.
Read more >Filtering and Sampling Events for Python
Learn more about how to configure your SDK to filter and sample events reported to Sentry.
Read more >sentry_sdk.client — sentry-python 1.12.0 documentation
s" % (exc_info[0].__module__, error_type_name) for ignored_error in self.options["ignore_errors"]: # String types are matched against the type name in the ...
Read more >Filtering events - Docs - Sentry Documentation
using Sentry; SentrySdk.Init(o => { o.BeforeSend = sentryEvent => { // Modify the event here: sentryEvent.ServerName = null; // Don't send server names....
Read more >commit python-sentry-sdk for openSUSE:Factory
Package is "python-sentry-sdk" Sun Oct 27 13:40:40 2019 rev:8 ... + - Fix a bug that would make Django 1.11+ apps crash when...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Nevermind I found the bug!
Checked on my side, actually found that I’m assuming that
exec_info
always is a tuple with(class type, Exception, traceback)
. But non related with this