From a2642b6616d3105939882095da48d204c512d763 Mon Sep 17 00:00:00 2001 From: Lyn Nagara Date: Tue, 12 May 2026 14:03:38 -0700 Subject: [PATCH] fix(cells): Bump Organization replication_version to backfill mapping date_created Triggers backfill_outboxes.py to re-replicate every Organization upserting OrganizationMapping.date_created with the value from Organization.date_added now that #115325 plumbs it through. Alternative to https://github.com/getsentry/sentry/pull/115406 Roll out: - needs to be flipped to 5 in sentry-options-automator to take effect in production --- src/sentry/models/organization.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sentry/models/organization.py b/src/sentry/models/organization.py index ea93ac28fb6b..87e30ac2333b 100644 --- a/src/sentry/models/organization.py +++ b/src/sentry/models/organization.py @@ -153,7 +153,7 @@ class Organization(ReplicatedCellModel): """ category = OutboxCategory.ORGANIZATION_UPDATE - replication_version = 4 + replication_version = 5 __relocation_scope__ = RelocationScope.Organization name = models.CharField(max_length=ORGANIZATION_NAME_MAX_LENGTH)