Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/sentry/processing_errors/grouptype.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,8 @@ def _try_state_transition(self, new_priority: DetectorPriorityLevel) -> int:
class SourcemapDetectorHandler(ProcessingErrorDetectorHandler):
error_types = JS_SOURCEMAP_ERROR_TYPES
fingerprint_key = "sourcemap"
issue_title = "Broken source maps detected"
issue_subtitle = "Source maps are not configured correctly for this project"
issue_title = "Source maps are misconfigured"
issue_subtitle = "Minified stack traces detected, making errors harder to debug in Sentry"


@dataclass(frozen=True)
Expand Down
2 changes: 1 addition & 1 deletion tests/sentry/processing_errors/test_grouptype.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def test_failure_creates_occurrence(self) -> None:
assert result is not None
assert result.priority == DetectorPriorityLevel.HIGH
assert isinstance(result.result, IssueOccurrence)
assert result.result.issue_title == "Broken source maps detected"
assert result.result.issue_title == "Source maps are misconfigured"
assert result.result.evidence_data["error_types"] == ["js_invalid_source", "js_no_source"]
assert result.result.evidence_data["sample_event_id"] == "test-event-123"
assert result.event_data is not None
Expand Down
Loading