Skip to content

Commit 49de3f3

Browse files
kconsmchen-sentry
authored andcommitted
fix(issues): Remove broken scope tag (#108450)
The value of stacktrace_link.empty_root hasn't been reliably accurate since it was added in 2024. We could figure out which _root field to use and fix it, but given that it has been wrong this long, it seems this tag is unnecessary and can be removed.
1 parent d9a5754 commit 49de3f3

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/sentry/issues/endpoints/project_stacktrace_link.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,6 @@ def set_tags(scope: Scope, result: StacktraceLinkOutcome, integrations: list[Non
8787
scope.set_tag(
8888
"stacktrace_link.tried_url", result["current_config"]["outcome"].get("attemptedUrl")
8989
)
90-
scope.set_tag(
91-
"stacktrace_link.empty_root",
92-
result["current_config"]["config"].automatically_generated == "",
93-
)
9490
scope.set_tag(
9591
"stacktrace_link.auto_derived",
9692
result["current_config"]["config"].automatically_generated is True,

0 commit comments

Comments
 (0)