auto-sync: 2026-06-01 22:44:43 (catch-all)

This commit is contained in:
cfdaily
2026-06-01 22:44:43 +08:00
parent dbb6b6a1b2
commit 9a3d4806b5
+2 -2
View File
@@ -466,9 +466,9 @@ class TestCheckTimeoutsUnified:
for i in range(3):
attempt_time = datetime.utcnow() - timedelta(minutes=25 - i * 5)
conn.execute(
"INSERT INTO task_attempts (id, task_id, agent_id, outcome, created_at) "
"INSERT INTO task_attempts (task_id, attempt_number, agent, outcome, started_at) "
"VALUES (?, ?, ?, ?, ?)",
(f"attempt-{i}", "t-crash", "agent-a", "crashed",
("t-crash", i + 1, "agent-a", "crashed",
attempt_time.isoformat()),
)
conn.commit()