mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-01-24 03:43:42 -08:00
save money on sentry.io bill by disabling performance monitoring
This commit is contained in:
parent
1f0f1ae215
commit
3e086ed606
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Add table
Reference in a new issue