Use SqlFederationService instead of stub
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 55s

StubFederationService silently no-ops federation events when
cart's event processor wins the race to pick them up.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
giles
2026-02-22 00:05:14 +00:00
parent a6cfd02832
commit 0d47a094a6

View File

@@ -24,5 +24,5 @@ def register_domain_services() -> None:
if not services.has("market"):
services.market = SqlMarketService()
if not services.has("federation"):
from shared.services.stubs import StubFederationService
services.federation = StubFederationService()
from shared.services.federation_impl import SqlFederationService
services.federation = SqlFederationService()