fix(agent): anchor closure on terminal runs
All checks were successful
CD Pipeline / workflow-shape (push) Successful in 1s
CD Pipeline / cancel-stale-cd (push) Has been skipped
CD Pipeline / tests (push) Successful in 1m16s
CD Pipeline / build-and-deploy (push) Successful in 4m48s
CD Pipeline / post-deploy-checks (push) Successful in 4m48s
All checks were successful
CD Pipeline / workflow-shape (push) Successful in 1s
CD Pipeline / cancel-stale-cd (push) Has been skipped
CD Pipeline / tests (push) Successful in 1m16s
CD Pipeline / build-and-deploy (push) Successful in 4m48s
CD Pipeline / post-deploy-checks (push) Successful in 4m48s
This commit is contained in:
@@ -3277,9 +3277,17 @@ def _build_work_item_progress(
|
||||
def _first_operation(
|
||||
rows: Iterable[Mapping[str, Any]],
|
||||
operation_type: str,
|
||||
*,
|
||||
statuses: set[str] | None = None,
|
||||
) -> dict[str, Any] | None:
|
||||
for row in rows:
|
||||
if str(row.get("operation_type") or "") == operation_type:
|
||||
if (
|
||||
str(row.get("operation_type") or "") == operation_type
|
||||
and (
|
||||
statuses is None
|
||||
or str(row.get("status") or "") in statuses
|
||||
)
|
||||
):
|
||||
return dict(row)
|
||||
return None
|
||||
|
||||
@@ -3303,7 +3311,15 @@ def _missing_runtime_operation_chain_ref_ids(
|
||||
"""Return exact apply/check/candidate receipt ids missing from a bounded read."""
|
||||
|
||||
operation_rows = [_row_mapping(row) for row in rows]
|
||||
latest_apply = _first_operation(operation_rows, "ansible_apply_executed")
|
||||
latest_observed_apply = _first_operation(
|
||||
operation_rows,
|
||||
"ansible_apply_executed",
|
||||
)
|
||||
latest_apply = _first_operation(
|
||||
operation_rows,
|
||||
"ansible_apply_executed",
|
||||
statuses={"success", "failed"},
|
||||
) or latest_observed_apply
|
||||
if latest_apply is None:
|
||||
return []
|
||||
|
||||
@@ -3481,7 +3497,21 @@ def _autonomous_execution_loop_ledger(
|
||||
telegram_rows = [_row_mapping(row) for row in telegram_latest_rows]
|
||||
auto_repair_rows = [_row_mapping(row) for row in auto_repair_latest_rows]
|
||||
|
||||
latest_apply = _first_operation(operation_rows, "ansible_apply_executed")
|
||||
latest_observed_apply = _first_operation(
|
||||
operation_rows,
|
||||
"ansible_apply_executed",
|
||||
)
|
||||
latest_apply = _first_operation(
|
||||
operation_rows,
|
||||
"ansible_apply_executed",
|
||||
statuses={"success", "failed"},
|
||||
) or latest_observed_apply
|
||||
latest_inflight_apply = (
|
||||
latest_observed_apply
|
||||
if latest_observed_apply is not None
|
||||
and latest_observed_apply.get("op_id") != (latest_apply or {}).get("op_id")
|
||||
else None
|
||||
)
|
||||
latest_check = None
|
||||
latest_candidate = None
|
||||
if latest_apply is not None:
|
||||
@@ -3717,6 +3747,23 @@ def _autonomous_execution_loop_ledger(
|
||||
"schema_version": "ai_agent_autonomous_execution_loop_ledger_v1",
|
||||
"project_id": project_id,
|
||||
"operation_id": apply_op_id or check_mode_op_id or candidate_op_id or None,
|
||||
"completion_anchor": (
|
||||
"latest_terminal_apply"
|
||||
if latest_apply is not None
|
||||
and str(latest_apply.get("status") or "") in {"success", "failed"}
|
||||
else "latest_observed_operation"
|
||||
),
|
||||
"latest_inflight_apply": (
|
||||
{
|
||||
"op_id": latest_inflight_apply.get("op_id"),
|
||||
"status": latest_inflight_apply.get("status"),
|
||||
"automation_run_id": latest_inflight_apply.get("automation_run_id"),
|
||||
"incident_id": latest_inflight_apply.get("incident_id"),
|
||||
"created_at": latest_inflight_apply.get("created_at"),
|
||||
}
|
||||
if latest_inflight_apply is not None
|
||||
else None
|
||||
),
|
||||
"automation_run_id": automation_run_id or None,
|
||||
"root_candidate_op_id": candidate_op_id or None,
|
||||
"check_mode_op_id": check_mode_op_id or None,
|
||||
@@ -6028,6 +6075,7 @@ _RUNTIME_OPERATION_LATEST_SQL = """
|
||||
input ->> 'source_candidate_op_id' AS candidate_op_id
|
||||
FROM automation_operation_log
|
||||
WHERE operation_type = 'ansible_apply_executed'
|
||||
AND status IN ('success', 'failed')
|
||||
ORDER BY created_at DESC
|
||||
LIMIT 1
|
||||
)
|
||||
@@ -6104,6 +6152,7 @@ _RUNTIME_OPERATION_LATEST_DIRECT_SQL = """
|
||||
input ->> 'source_candidate_op_id' AS candidate_op_id
|
||||
FROM automation_operation_log
|
||||
WHERE operation_type = 'ansible_apply_executed'
|
||||
AND status IN ('success', 'failed')
|
||||
ORDER BY created_at DESC
|
||||
LIMIT 1
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user