Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions src/sentry/receivers/outbox/control.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,11 +165,12 @@ def process_relocation_reply_with_export(payload: Mapping[str, Any], **kwds):
try:
encrypted_bytes = relocation_storage.open(path)
except Exception:
# TODO(mark) remove this after the stuck outbox is cleared
if slug == "test-reloc-ct":
return
raise FileNotFoundError("Could not open SaaS -> SaaS export in proxy relocation bucket.")

# TODO(mark) remove this after the stuck outbox is cleared
if slug == "test-reloc-ct":
return

with encrypted_bytes:
region_relocation_export_service.reply_with_export(
relocation_uuid=payload["relocation_uuid"],
Expand Down
Loading