Skip to content

Commit 0c5b080

Browse files
feat(java): Add feature flag for deobfuscating java exception values (#42353)
Adds a new feature flag
1 parent bd65d76 commit 0c5b080

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
@@ -1186,6 +1186,8 @@ def SOCIAL_AUTH_DEFAULT_USERNAME():
11861186
"organizations:dynamic-sampling": False,
11871187
# Enable View Hierarchies in issue details page
11881188
"organizations:mobile-view-hierarchies": False,
1189+
# Enable deobfuscating exception values in Java issues
1190+
"organizations:java-exception-value-deobfuscation": False,
11891191
# Enable tag improvements in the issue details page
11901192
"organizations:issue-details-tag-improvements": False,
11911193
# Enable the release details performance section

src/sentry/features/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@
105105
default_manager.add("organizations:metrics-performance-ui", OrganizationFeature, True)
106106
default_manager.add("organizations:minute-resolution-sessions", OrganizationFeature)
107107
default_manager.add("organizations:mobile-view-hierarchies", OrganizationFeature, True)
108+
default_manager.add("organizations:java-exception-value-deobfuscation", OrganizationFeature, True)
108109
default_manager.add("organizations:monitors", OrganizationFeature)
109110
default_manager.add("organizations:native-stack-trace-v2", OrganizationFeature, True)
110111
default_manager.add("organizations:new-weekly-report", OrganizationFeature, True)

0 commit comments

Comments
 (0)