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
1 file
+ 4
2
Compare changes
  • Side-by-side
  • Inline
+ 4
2
@@ -47,8 +47,10 @@ 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 (oss_params := load_oss_params()):
sentry_sdk.init(dsn=oss_params.SENTRY.DSN, environment=oss_params.GENERAL.environment, traces_sample_rate=1.0)
if os.getenv("TESTING", "false").lower() == "false" and (sentry_params := load_oss_params().SENTRY):
sentry_sdk.init(
dsn=sentry_params.DSN, environment=load_oss_params().GENERAL.environment, traces_sample_rate=1.0
)
init_sentry()
Loading