Skip to content

Commit

Permalink
Add handling for DropSilently
Browse files Browse the repository at this point in the history
  • Loading branch information
cmanallen committed Mar 5, 2025
1 parent 6fe9c42 commit e9565ce
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/sentry/replays/consumers/recording_two_step.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ def commit_message(message: Message[ProcessedRecordingMessage]) -> None:
return None
except GCS_RETRYABLE_ERRORS:
raise
except DropSilently:
return None
except Exception:
logger.exception("Failed to commit replay recording message.")
return None

0 comments on commit e9565ce

Please sign in to comment.