Merge PR #86: [moz] fix(spawner): _get_task_info SELECT 补 must_haves 字段
Deploy / ci (push) Failing after 7s
Deploy / deploy (push) Has been skipped
Deploy / notify-deploy-failure (push) Successful in 1s
Deploy / notify-deploy-success (push) Successful in 0s

This commit was merged in pull request #86.
This commit is contained in:
2026-06-18 14:43:27 +00:00
+1 -1
View File
@@ -1261,7 +1261,7 @@ curl -X POST http://{api_host}:{api_port}/api/projects/{project_id}/tasks/{task_
conn = get_connection(db_path) conn = get_connection(db_path)
try: try:
row = conn.execute( row = conn.execute(
"SELECT id, title, status FROM tasks WHERE id=?", ( "SELECT id, title, status, must_haves FROM tasks WHERE id=?", (
task_id,) task_id,)
).fetchone() ).fetchone()
if not row: if not row: