diff --git a/apps/api/src/services/awooop_ansible_check_mode_service.py b/apps/api/src/services/awooop_ansible_check_mode_service.py index e045086e..f4915195 100644 --- a/apps/api/src/services/awooop_ansible_check_mode_service.py +++ b/apps/api/src/services/awooop_ansible_check_mode_service.py @@ -1007,9 +1007,6 @@ async def backfill_missing_auto_repair_execution_receipts_once( apply.error, apply.duration_ms, apply.status, - apply.catalog_id, - apply.playbook_path, - apply.risk_level, apply.created_at FROM automation_operation_log apply WHERE apply.operation_type = 'ansible_apply_executed' diff --git a/apps/api/tests/test_awooop_truth_chain_service.py b/apps/api/tests/test_awooop_truth_chain_service.py index 6c5a77df..10b927e8 100644 --- a/apps/api/tests/test_awooop_truth_chain_service.py +++ b/apps/api/tests/test_awooop_truth_chain_service.py @@ -1624,8 +1624,6 @@ def test_ansible_apply_receipt_backfill_queries_existing_apply_rows() -> None: assert "operation_type = 'ansible_apply_executed'" in source assert "auto_repair_executions existing" in source assert "executed_steps::text LIKE" in source - assert "apply.catalog_id" in source - assert "apply.playbook_path" in source def test_ansible_auto_repair_receipt_insert_casts_asyncpg_parameters() -> None: