Skip to content

Commit e851dd4

Browse files
fix(sandbox): for debugging add telex org to exclude from redirect (#91704)
1 parent 852daad commit e851dd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sentry/utils/auth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ def is_user_signed_request(request: Request) -> bool:
402402

403403
def set_active_org(request: HttpRequest, org_slug: str) -> None:
404404
if options.get("demo-mode.disable-sandbox-redirect"):
405-
if org_slug == "sandbox":
405+
if org_slug in ("sandbox", "telemetry-experience"):
406406
return
407407
# even if the value being set is the same this will trigger a session
408408
# modification and reset the users expiry, so check if they are different first.

0 commit comments

Comments
 (0)