Skip to content
Snippets Groups Projects

Feature/distinguish public private hostname

Merged Karel van Klink requested to merge feature/distinguish-public-private-hostname into develop
3 files
+ 19
17
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 2
2
@@ -47,8 +47,8 @@ def init_cli_app() -> typer.Typer:
def init_sentry() -> None:
"""Only initialize Sentry if not in testing mode."""
if os.getenv("TESTING", "false").lower() == "false" and (sentry_config := load_oss_params().SENTRY):
sentry_sdk.init(dsn=sentry_config.DSN, environment=sentry_config.environment, traces_sample_rate=1.0)
if os.getenv("TESTING", "false").lower() == "false" and (oss_params := load_oss_params()):
sentry_sdk.init(dsn=oss_params.SENTRY.DSN, environment=oss_params.GENERAL.environment, traces_sample_rate=1.0)
init_sentry()
Loading