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 a137f44 commit 7468758Copy full SHA for 7468758
2 files changed
src/sentry/integrations/utils/commit_context.py
@@ -83,7 +83,7 @@ def find_commit_context_for_event_all_frames(
83
extra=extra,
84
)
85
86
- if organization_id in options.get("demo-org-ids") and file_blames:
+ if organization_id in options.get("demo-mode.orgs") and file_blames:
87
selected_blame = max(file_blames, key=lambda blame: blame.commit.committedDate)
88
has_too_old_blames = False
89
has_too_recent_blames = False
src/sentry/options/defaults.py
@@ -3775,12 +3775,6 @@
3775
flags=FLAG_AUTOMATOR_MODIFIABLE,
3776
3777
3778
-register(
3779
- "demo-org-ids",
3780
- default=[],
3781
- flags=FLAG_AUTOMATOR_MODIFIABLE,
3782
-)
3783
-
3784
# option for sample size when fetching project tag keys
3785
register(
3786
"visibility.tag-key-sample-size",
0 commit comments