raven-python icon indicating copy to clipboard operation
raven-python copied to clipboard

Raven is the legacy Python client for Sentry (getsentry.com) — replaced by sentry-python

Results 104 raven-python issues
Sort by recently updated
recently updated
newest added

We've had raven throw the above exception quite regularly in Django. Here is the full trace: ``` Traceback (most recent call last): File "/usr/local/lib/python3.5/dist-packages/celery/app/trace.py", line 253, in trace_task I, R,...

asyncio needs special handling as its unhandled exceptions are consumed by logging and ignoring them. @asvetlov Please take a look at the implementation and let me know if handling can...

I'm not completely sure whether this is a change in Django or in Raven. I've started seeing typos in the `manage.py shell` log to Sentry since I upgraded to django...

As implemented in #686 non-zero `SystemExit` exceptions are now raised to Sentry. We have an issue that as they all have completely different stack traces they all cause a new...

We are having this issue for almost three months. It is the same issue as posted in another thread: https://github.com/getsentry/raven-python/issues/702#issuecomment-336833338 > > ERROR sentry.errors base.py Sentry responded with an error:...

Bug
Core

[remove-unittest2.patch.txt](https://github.com/getsentry/raven-python/files/2278282/remove-unittest2.patch.txt)

Currently if you run `pip install raven==6.1.0` with python 3.5.3 (and I'm guessing other versions of python) `contextlib2` gets installed, though it should not be installed for python >= 3.2....

When trying to run the test suite on openSUSE, I get plenty of errors on various ``teardown`` methods of various tests (mostly related to Django support). [osc-build-log.txt](https://github.com/getsentry/raven-python/files/2278140/osc-build-log.txt)

```json { "asctime": "2018-05-17 11:58:33,097", "created": 1526572713.097566, "levelname": "ERROR", "levelno": 40, "filename": "base.py", "funcName": "_failed_send", "lineno": 679, "module": "base", "message": "Sentry responded with an API error: APIError(Event dropped due to...

Improvement
Core

Celery sets up 2 kinds of loggers: a global logger and task loggers. The [celery docs](http://docs.celeryproject.org/en/latest/userguide/tasks.html#logging) include an example on how to use the task loggers, which makes task loggers...