diff --git a/apps/api/src/services/telegram_alert_monitoring_coverage_readback.py b/apps/api/src/services/telegram_alert_monitoring_coverage_readback.py index 1bf5007dd..86995bf37 100644 --- a/apps/api/src/services/telegram_alert_monitoring_coverage_readback.py +++ b/apps/api/src/services/telegram_alert_monitoring_coverage_readback.py @@ -101,22 +101,15 @@ async def load_latest_telegram_alert_monitoring_coverage_readback( ) _require_safe_boundaries(monitoring_inventory, monitoring_readback_plan) - ( - matrix, - verifier, - ai_alert_readback, - runtime_log_readback, - consumer_readback, - source_contract, - ) = ( - await asyncio.gather( - _load_telegram_matrix_readback(project_id=project_id), - _load_post_apply_verifier_readback(project_id=project_id), - _load_ai_alert_card_delivery(project_id=project_id), - _load_runtime_log_readback(project_id=project_id), - _load_log_controlled_writeback_consumer_readback(project_id=project_id), - asyncio.to_thread(_inspect_source_contract, repo_root), - ) + matrix, consumer_readback, source_contract = await asyncio.gather( + _load_telegram_matrix_readback(project_id=project_id), + _load_log_controlled_writeback_consumer_readback(project_id=project_id), + asyncio.to_thread(_inspect_source_contract, repo_root), + ) + verifier, ai_alert_readback, runtime_log_readback = await asyncio.gather( + _load_post_apply_verifier_readback(project_id=project_id), + _load_ai_alert_card_delivery(project_id=project_id), + _load_runtime_log_readback(project_id=project_id), ) return build_telegram_alert_monitoring_coverage_readback(