I have noticed that we do not receive events for errors occurring on threads created using threading (Python & Python SDK) within a Flask application (we use the Sentry Flask integration).
Would you know if there is any simple way to make the SDK correctly report the error event? I’d rather not have to run a try except within my threads or things like that.
Do you see any output at all, such as the traceback of the background thread? FWIW I had to add a time.sleep(0) in your while-loop because the background thread would otherwise be starved in some sense.
Traceback (most recent call last):
File "/Users/Konrad/anaconda3/lib/python3.6/threading.py", line 916, in _bootstrap_inner
self.run()
File "/Users/Konrad/anaconda3/lib/python3.6/threading.py", line 864, in run
self._target(*self._args, **self._kwargs)
File « /path", line 8, in error_func
print([][0])
IndexError: list index out of range```
Using PyCharm.
Python 3.6.3
<img apple-inline="yes" id="B0777006-355C-4341-AF61-714AB7E9E0D4" src="cid:7E3580AE-AC44-4DE6-BCDA-5821DC4E41DF@stationf.co" class="">
(Attachment PastedGraphic-3.tiff is missing)
Traceback (most recent call last):
File "/Users/Konrad/anaconda3/lib/python3.6/threading.py", line 916, in _bootstrap_inner
self.run()
File "/Users/Konrad/anaconda3/lib/python3.6/threading.py", line 864, in run
self._target(*self._args, **self._kwargs)
File « /path", line 8, in error_func
print([][0])
IndexError: list index out of range```
Using PyCharm.
Python 3.6.3
Sorry that was my signature!
I just ran it from console and it doesn’t work: no event received. If I raise an exception in the main thread, I do receive an event.
You receive the event fine when testing on your side?