From eb364a31da89a340b60abcb929430112e1289fb7 Mon Sep 17 00:00:00 2001 From: Fabian Schindler Date: Thu, 15 May 2025 12:49:17 +0200 Subject: [PATCH] fix(sandbox): for debugging add telex org to exclude from redirect --- src/sentry/utils/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sentry/utils/auth.py b/src/sentry/utils/auth.py index d9de3dad71350c..d45dc3d837916a 100644 --- a/src/sentry/utils/auth.py +++ b/src/sentry/utils/auth.py @@ -402,7 +402,7 @@ def is_user_signed_request(request: Request) -> bool: def set_active_org(request: HttpRequest, org_slug: str) -> None: if options.get("demo-mode.disable-sandbox-redirect"): - if org_slug == "sandbox": + if org_slug in ("sandbox", "telemetry-experience"): return # even if the value being set is the same this will trigger a session # modification and reset the users expiry, so check if they are different first.