Browse Source

feat(replay): Cleanup viewed-by feature flag (backend) (#69153)

Flag is here and released to 100% already:
https://flagr.getsentry.net/#/flags/601

See also https://github.com/getsentry/sentry/pull/69152

Fixes https://github.com/getsentry/team-replay/issues/19
Fixes https://github.com/getsentry/sentry/issues/64924
Ryan Albrecht 11 months ago
parent
commit
a837111ea0
2 changed files with 0 additions and 3 deletions
  1. 0 2
      src/sentry/conf/server.py
  2. 0 1
      src/sentry/features/temporary.py

+ 0 - 2
src/sentry/conf/server.py

@@ -1875,8 +1875,6 @@ SENTRY_FEATURES: dict[str, bool | None] = {
     "organizations:session-replay-trace-table": False,
     # Enable core Session Replay link in the sidebar
     "organizations:session-replay-ui": True,
-    # Enable 'Viewed By' state for replay items
-    "organizations:session-replay-viewed-by-ui": False,
     # Lets organizations manage grouping configs
     "organizations:set-grouping-config": False,
     # Enable the UI for updated terms of service

+ 0 - 1
src/sentry/features/temporary.py

@@ -222,7 +222,6 @@ def register_temporary_features(manager: FeatureManager):
     manager.add("organizations:session-replay-slack-new-issue", OrganizationFeature, FeatureHandlerStrategy.INTERNAL)
     manager.add("organizations:session-replay-trace-table", OrganizationFeature, FeatureHandlerStrategy.REMOTE)
     manager.add("organizations:session-replay-ui", OrganizationFeature, FeatureHandlerStrategy.INTERNAL)
-    manager.add("organizations:session-replay-viewed-by-ui", OrganizationFeature, FeatureHandlerStrategy.REMOTE)
     manager.add("organizations:set-grouping-config", OrganizationFeature, FeatureHandlerStrategy.INTERNAL)
     manager.add("organizations:settings-legal-tos-ui", OrganizationFeature, FeatureHandlerStrategy.REMOTE)
     manager.add("organizations:slack-block-kit", OrganizationFeature, FeatureHandlerStrategy.INTERNAL)