feat: add runs_metrics table (#5169)

This commit is contained in:
Sarah Wooders
2025-10-08 15:25:26 -07:00
committed by Caren Thomas
parent e58c76124a
commit 216151a313

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(run_id=run_id, actor=actor)
return await runs_manager.delete_run_by_id(run_id=run_id, actor=actor)
@router.post(