feat(tenancy): harden shared cloud runtime boundaries

This commit is contained in:
Junyan Qin
2026-07-20 01:47:42 +08:00
parent 3f01ffe63b
commit 627eb6b8ef
121 changed files with 18142 additions and 5615 deletions
+3
View File
@@ -82,6 +82,9 @@ class FakeApp:
def _create_mock_persistence_manager(self):
persistence_mgr = AsyncMock()
persistence_mgr.execute_async = AsyncMock()
# AsyncMock invents arbitrary callable attributes on access. Keep the
# optional production UoW hook explicitly absent unless a test opts in.
persistence_mgr.tenant_uow = None
return persistence_mgr
def _create_mock_query_pool(self):