🐛(config) remove default sentry_dsn

set default sentry_dsn to None to avoid all outside
deployments sending infos to our sentry instance.
This commit is contained in:
Marie PUPO JEAMMET
2025-07-23 11:51:59 +02:00
committed by Marie
parent 25918830ff
commit 1fdd2e052b

View File

@@ -1067,7 +1067,7 @@ class Production(Base):
}, },
} }
SENTRY_DSN = values.Value( SENTRY_DSN = values.Value(
"https://b72746c73d669421e7a8ccd3fab0fad2@sentry.incubateur.net/171", None,
environ_name="SENTRY_DSN", environ_name="SENTRY_DSN",
) )