Fix: Make starting jobs more idempotent

This commit is contained in:
Reid 'arrdem' McKenzie 2023-07-08 19:36:45 -06:00
parent f05dad1a18
commit 9b52c546e4
2 changed files with 2 additions and 1 deletions

View file

@ -165,6 +165,7 @@ SET
started_at = datetime('now')
WHERE
id = :jid
AND started_at IS NULL
;
-- name: cancel-job!

View file

@ -274,7 +274,7 @@ def pull_jobs(app: App, db: Db) -> None:
db.finish_job(jid=job.id, state="cancelled")
elif printer_state.get("printing"):
pass
db.start_job(jid=job.id)
else:
log.warn(