fix: preserve logical projection provenance
Some checks failed
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / pytest-smoke (push) Failing after 2s

This commit is contained in:
tegwick 2026-08-21 19:10:11 +02:00
parent 1d258626e0
commit 055cf4980c
2 changed files with 9 additions and 4 deletions

View file

@ -323,8 +323,10 @@ def _now() -> datetime:
def _rebuild_sources(projection_id: str) -> list[str]:
return {
"hub_registry": ["runtime_registrations"],
"messages": ["runtime_messages"],
"progress_events": ["runtime_progress_events"],
"interaction_events": ["runtime_interaction_events"],
# Provenance names are logical authority collections in the extension
# contract, not backend-specific SQL table names.
"hub_registry": ["hub_descriptors", "hub_manifests"],
"messages": ["messages"],
"progress_events": ["progress_events"],
"interaction_events": ["interaction_events"],
}[projection_id]