Skip to content

fix(error-reporting): silence ResolutionError to prevent crash reports#1115

Open
sentry[bot] wants to merge 3 commits into
mainfrom
seer/fix/silence-resolution-error
Open

fix(error-reporting): silence ResolutionError to prevent crash reports#1115
sentry[bot] wants to merge 3 commits into
mainfrom
seer/fix/silence-resolution-error

fix: update tests and docs for ResolutionError silencing

c1da4e3
Select commit
Loading
Failed to load commit list.
@sentry/warden / warden: find-bugs completed Jun 22, 2026

1 issue

find-bugs: Found 1 issue (1 medium)

Medium

ResolutionError silences server-side (5xx/network) failures, not just user-input errors - `src/lib/error-reporting.ts:61-63`

Silencing all ResolutionError instances will suppress Sentry reports for genuine server errors (e.g. 5xx responses, network failures) that are wrapped as ResolutionError in several resolvers — add a distinguishing property or only silence specific sub-types/headlines to avoid hiding real infrastructure issues.


⏱ 47.3s · 79.7k in / 3.3k out · $0.22

Annotations

Check warning on line 63 in src/lib/error-reporting.ts

See this annotation in the file changed.

@sentry-warden sentry-warden / warden: find-bugs

ResolutionError silences server-side (5xx/network) failures, not just user-input errors

Silencing all `ResolutionError` instances will suppress Sentry reports for genuine server errors (e.g. 5xx responses, network failures) that are wrapped as `ResolutionError` in several resolvers — add a distinguishing property or only silence specific sub-types/headlines to avoid hiding real infrastructure issues.