Skip to content

Commit

Permalink
ref: silence noisy ingest error when projects are deleted (#80602)
Browse files Browse the repository at this point in the history
<!-- Describe your PR here. -->
  • Loading branch information
asottile-sentry authored Nov 12, 2024
1 parent cf3d29a commit c934a72
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/sentry/ingest/consumer/simple_event.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ def process_simple_event_message(
with metrics.timer("ingest_consumer.fetch_project"):
project = Project.objects.get_from_cache(id=project_id)
except Project.DoesNotExist:
logger.exception("Project for ingested event does not exist: %s", project_id)
return

return process_event(
Expand Down

0 comments on commit c934a72

Please sign in to comment.