Browse Source

🐛 Set up Sentry only when used (#671)

pull/13907/head
Sebastián Ramírez 1 year ago
committed by GitHub
parent
commit
6851eea1fe
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      backend/app/worker.py

1
backend/app/worker.py

@ -3,6 +3,7 @@ import sentry_sdk
from app.core.celery_app import celery_app
from app.core.config import settings
if settings.SENTRY_DSN:
sentry_sdk.init(dsn=str(settings.SENTRY_DSN))

Loading…
Cancel
Save