From fd2f9fa74ca906bb48b7d51fb5fa14d8bc7e1fc6 Mon Sep 17 00:00:00 2001 From: Hubert Deng Date: Tue, 23 Jul 2024 11:14:55 -0700 Subject: [PATCH] Fix: errors only config flag (#3220) fix bug with errors only flag --- sentry/sentry.conf.example.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sentry/sentry.conf.example.py b/sentry/sentry.conf.example.py index 0f8d611..144d94b 100644 --- a/sentry/sentry.conf.example.py +++ b/sentry/sentry.conf.example.py @@ -365,4 +365,4 @@ CSP_REPORT_ONLY = True # CSRF_TRUSTED_ORIGINS = ["https://example.com", "http://127.0.0.1:9000"] # If you would like to use self-hosted Sentry with only errors enabled, please set this -SENTRY_SELF_HOSTED_ERRORS_ONLY = env("COMPOSE_PROFILES") == "feature-complete" +SENTRY_SELF_HOSTED_ERRORS_ONLY = env("COMPOSE_PROFILES") != "feature-complete"