We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 852daad commit e851dd4Copy full SHA for e851dd4
src/sentry/utils/auth.py
@@ -402,7 +402,7 @@ def is_user_signed_request(request: Request) -> bool:
402
403
def set_active_org(request: HttpRequest, org_slug: str) -> None:
404
if options.get("demo-mode.disable-sandbox-redirect"):
405
- if org_slug == "sandbox":
+ if org_slug in ("sandbox", "telemetry-experience"):
406
return
407
# even if the value being set is the same this will trigger a session
408
# modification and reset the users expiry, so check if they are different first.
0 commit comments