fix(backend): Skip updating status of already terminated graph (#9696)

When we are cancelling a running graph execution, it's possible that the
graph is already terminated.
We need to allow this process to proceed and update the rest of its node
execution to terminate.

### Changes 🏗️

Instead of erroring out the graph execution status update, we proceed on
updating the node execution status.

### Checklist 📋

#### For code changes:
- [x] I have clearly listed my changes in the PR description
- [x] I have made a test plan
- [x] I have tested my changes according to the test plan:
  - [x] Stop an already terminated graph
This commit is contained in:
Zamil Majdy 2025-03-26 11:19:37 +07:00 committed by GitHub
parent 6e0af09c3d
commit c6703dd891
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 10 deletions

View File

@ -406,7 +406,7 @@ async def update_graph_execution_stats(
graph_exec_id: str,
status: ExecutionStatus,
stats: GraphExecutionStats | None = None,
) -> GraphExecutionMeta:
) -> GraphExecutionMeta | None:
data = stats.model_dump() if stats else {}
if isinstance(data.get("error"), Exception):
data["error"] = str(data["error"])
@ -423,10 +423,8 @@ async def update_graph_execution_stats(
"stats": Json(data),
},
)
if not res:
raise ValueError(f"Graph execution #{graph_exec_id} not found")
return GraphExecutionMeta.from_db(res)
return GraphExecutionMeta.from_db(res) if res else None
async def update_node_execution_stats(node_exec_id: str, stats: NodeExecutionStats):

View File

@ -633,16 +633,14 @@ class Executor:
)
exec_stats.walltime = timing_info.wall_time
exec_stats.cputime = timing_info.cpu_time
exec_stats.error = error
exec_stats.error = str(error)
if isinstance(exec_stats.error, Exception):
exec_stats.error = str(exec_stats.error)
result = cls.db_client.update_graph_execution_stats(
if result := cls.db_client.update_graph_execution_stats(
graph_exec_id=graph_exec.graph_exec_id,
status=status,
stats=exec_stats,
)
cls.db_client.send_execution_update(result)
):
cls.db_client.send_execution_update(result)
cls._handle_agent_run_notif(graph_exec, exec_stats)