Uncaught exceptions are not being reported to sentry.
I have ran manage.py raven test
and I get the test message in sentry to confirm the communication is working.
My configurations include:
# settings.py
RAVEN_CONFIG = {
'dsn': '****',
}
SENTRY_CLIENT = 'raven.contrib.django.raven_compat.DjangoClient'
SENTRY_AUTO_LOG_STACKS = True
INSTALLED_APPS += [
'raven.contrib.django.raven_compat',
]
then
# wsgi.py
from raven.contrib.django.raven_compat.models import client
client.captureException()