Skip to content

Commit

Permalink
chore(issues): add native event errors back to issue details (#79114)
Browse files Browse the repository at this point in the history
this pr un-hides 2 native event errors, so that they will be shown on
issue details. Will work with ingest to see if we need to update the
copy we show, but at least this will make the event error visible
  • Loading branch information
roggenkemper authored Oct 16, 2024
1 parent 4998063 commit ee83245
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sentry/api/helpers/actionable_items_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ class ActionPriority:
EventError.INVALID_ENVIRONMENT: ActionPriority.LOW,
EventError.NATIVE_BAD_DSYM: ActionPriority.LOW,
EventError.NATIVE_MISSING_DSYM: ActionPriority.LOW,
EventError.NATIVE_INTERNAL_FAILURE: ActionPriority.LOW,
EventError.NATIVE_SYMBOLICATOR_FAILED: ActionPriority.LOW,
EventError.NATIVE_MISSING_OPTIONALLY_BUNDLED_DSYM: ActionPriority.LOW,
EventError.PAST_TIMESTAMP: ActionPriority.LOW,
EventError.PROGUARD_MISSING_LINENO: ActionPriority.LOW,
Expand Down Expand Up @@ -66,12 +68,10 @@ class ActionPriority:
EventError.JS_SCRAPING_DISABLED,
EventError.JS_TOO_MANY_REMOTE_SOURCES,
EventError.MISSING_ATTRIBUTE,
EventError.NATIVE_INTERNAL_FAILURE,
EventError.NATIVE_MISSING_SYMBOL,
EventError.NATIVE_MISSING_SYSTEM_DSYM,
EventError.NATIVE_NO_CRASHED_THREAD,
EventError.NATIVE_SIMULATOR_FRAME,
EventError.NATIVE_SYMBOLICATOR_FAILED,
EventError.NATIVE_UNKNOWN_IMAGE,
EventError.UNKNOWN_ERROR,
EventError.VALUE_TOO_LONG,
Expand Down

0 comments on commit ee83245

Please sign in to comment.