fix: fix run deletion [LET-5339] (#5277)

This commit is contained in:
Sarah Wooders
2025-10-09 10:41:06 -07:00
committed by Caren Thomas
parent 7eae22f77c
commit 2017568b32

View File

@@ -286,7 +286,7 @@ async def delete_run(
"""
actor = await server.user_manager.get_actor_or_default_async(actor_id=headers.actor_id)
runs_manager = RunManager()
return await runs_manager.delete_run_by_id(run_id=run_id, actor=actor)
return await runs_manager.delete_run(run_id=run_id, actor=actor)
@router.post(