save money on sentry.io bill by disabling performance monitoring

This commit is contained in:
rimu 2024-05-06 14:19:39 +12:00
parent 1f0f1ae215
commit 3e086ed606

View file

@ -47,7 +47,7 @@ def create_app(config_class=Config):
import sentry_sdk import sentry_sdk
sentry_sdk.init( sentry_sdk.init(
dsn=app.config["SENTRY_DSN"], dsn=app.config["SENTRY_DSN"],
enable_tracing=True enable_tracing=False,
) )
db.init_app(app) db.init_app(app)