Django - Deployment and Production
Given this Django settings snippet for Sentry integration:
What will happen when an error occurs in the Django app?
import sentry_sdk
from sentry_sdk.integrations.django import DjangoIntegration
sentry_sdk.init(
dsn="https://examplePublicKey@o0.ingest.sentry.io/0",
integrations=[DjangoIntegration()],
traces_sample_rate=1.0,
send_default_pii=True
)What will happen when an error occurs in the Django app?
