fix missing recording for task v2 block (#3304)

This commit is contained in:
LawyZheng
2025-08-27 12:08:37 +08:00
committed by GitHub
parent 2e5ebc6427
commit dd21c3a707
3 changed files with 5 additions and 8 deletions

View File

@@ -170,7 +170,6 @@ async def deploy_script(
script_id=script_id,
file_count=len(data.files) if data.files else 0,
)
raise HTTPException(status_code=400, detail="Not implemented")
try:
# Get the latest version of the script
@@ -259,7 +258,6 @@ async def run_script(
current_org: Organization = Depends(org_auth_service.get_current_org),
) -> None:
"""Run a script."""
raise HTTPException(status_code=400, detail="Not implemented")
# await script_service.execute_script(
# script_id=script_id,
# organization_id=current_org.organization_id,