Skip to content

Commit

Permalink
Wrap in try/catch
Browse files Browse the repository at this point in the history
  • Loading branch information
k-fish committed Aug 2, 2024
1 parent 503314b commit c8931f5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/sentry/ingest/consumer/processors.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,11 @@ def process_event(
event_id=event_id,
project_id=project_id,
)
collect_span_metrics(project, data)

try:
collect_span_metrics(project, data)
except Exception:
pass

elif data.get("type") == "feedback":
if features.has("organizations:user-feedback-ingest", project.organization, actor=None):
Expand Down

0 comments on commit c8931f5

Please sign in to comment.