mirror of https://github.com/peter4431/rq.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
331 B
Python
8 lines
331 B
Python
def register_sentry(sentry_dsn, **opts):
|
|
"""Given a Raven client and an RQ worker, registers exception handlers
|
|
with the worker so exceptions are logged to Sentry.
|
|
"""
|
|
import sentry_sdk
|
|
from sentry_sdk.integrations.rq import RqIntegration
|
|
sentry_sdk.init(sentry_dsn, integrations=[RqIntegration()], **opts)
|