Browse Source

ref(sourcemaps): Enable new artifact bundles UI by default (#50795)

Riccardo Busetti 1 year ago
parent
commit
2bc742173d
2 changed files with 2 additions and 1 deletions
  1. 1 1
      src/sentry/conf/server.py
  2. 1 0
      tests/sentry/api/serializers/test_organization.py

+ 1 - 1
src/sentry/conf/server.py

@@ -1508,7 +1508,7 @@ SENTRY_FEATURES = {
     # must be installed to use this functionality.
     "organizations:sso-saml2": True,
     # Enable a UI where users can see bundles and their artifacts which only have debug IDs
-    "organizations:source-maps-debug-ids": False,
+    "organizations:source-maps-debug-ids": True,
     # Enable the new opinionated dynamic sampling
     "organizations:dynamic-sampling": False,
     # Enable the sliding window per project

+ 1 - 0
tests/sentry/api/serializers/test_organization.py

@@ -76,6 +76,7 @@ class OrganizationSerializerTest(TestCase):
             "project-stats",
             "relay",
             "shared-issues",
+            "source-maps-debug-ids",
             "session-replay-ui",
             "sso-basic",
             "sso-saml2",