Fix live servers sqlite read path

This commit is contained in:
devRaGonSa
2026-03-24 15:09:35 +01:00
parent cf27fdb1cf
commit ab485b273b
2 changed files with 25 additions and 8 deletions

View File

@@ -754,7 +754,7 @@ def _should_refresh_snapshot(
def _try_collect_real_time_snapshot() -> tuple[list[dict[str, object]], list[dict[str, object]]]:
payload = get_live_data_source().collect_snapshots(persist=True)
payload = get_live_data_source().collect_snapshots(persist=False)
snapshots = payload.get("snapshots")
items = _select_primary_snapshot_items(_enrich_server_items(list(snapshots or [])))
errors = payload.get("errors")