Skip to content

Commit 2ef25f6

Browse files
authored
feat(loader): Add feature flag for new dynamic SDK loader (#44228)
1 parent e7544a3 commit 2ef25f6

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/sentry/conf/server.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1243,6 +1243,8 @@ def SOCIAL_AUTH_DEFAULT_USERNAME():
12431243
"organizations:scim-team-roles": False,
12441244
# Enable the in-app source map debugging feature
12451245
"organizations:fix-source-map-cta": False,
1246+
# Enable new JS SDK Dynamic Loader
1247+
"organizations:js-sdk-dynamic-loader": False,
12461248
# Adds additional filters and a new section to issue alert rules.
12471249
"projects:alert-filters": True,
12481250
# Enable functionality to specify custom inbound filters on events.

src/sentry/features/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@
9292
default_manager.add("organizations:issue-search-allow-postgres-only-search", OrganizationFeature, True)
9393
default_manager.add("organizations:issue-search-use-cdc-primary", OrganizationFeature, True)
9494
default_manager.add("organizations:issue-search-use-cdc-secondary", OrganizationFeature, True)
95+
default_manager.add("organizations:js-sdk-dynamic-loader", OrganizationFeature, True)
9596
default_manager.add("organizations:large-debug-files", OrganizationFeature)
9697
default_manager.add("organizations:mep-rollout-flag", OrganizationFeature, True)
9798
default_manager.add("organizations:metric-alert-chartcuterie", OrganizationFeature, True)

0 commit comments

Comments
 (0)