samwaugh commited on
Commit
27c513f
·
1 Parent(s): 8cb4ed4

Change completed to done

Browse files
Files changed (1) hide show
  1. backend/runner/app.py +1 -1
backend/runner/app.py CHANGED
@@ -222,7 +222,7 @@ def create_run():
222
 
223
  with RUNS_LOCK:
224
  RUNS[run_id].update({
225
- "status": "completed",
226
  "outputKey": f"outputs/{out_path.name}",
227
  "finishedAt": now,
228
  "updatedAt": now
 
222
 
223
  with RUNS_LOCK:
224
  RUNS[run_id].update({
225
+ "status": "done", # ← Change from "completed" to "done"
226
  "outputKey": f"outputs/{out_path.name}",
227
  "finishedAt": now,
228
  "updatedAt": now