Change completed to done
Browse files- 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": "
|
| 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
|