Fix issue inserting the empty log row
If the job started, and then was restarted, the row will already exist. So don't error on a conflict.
This commit is contained in:
parent
f2d28b4def
commit
502dc93618
1 changed files with 1 additions and 1 deletions
|
|
@ -118,7 +118,7 @@
|
||||||
(exec-query
|
(exec-query
|
||||||
conn
|
conn
|
||||||
"INSERT INTO load_new_guix_revision_job_logs (job_id, contents) VALUES
|
"INSERT INTO load_new_guix_revision_job_logs (job_id, contents) VALUES
|
||||||
($1, NULL)"
|
($1, NULL) ON CONFLICT DO NOTHING"
|
||||||
(list job-id)))
|
(list job-id)))
|
||||||
|
|
||||||
(define (combine-log-parts! conn job-id)
|
(define (combine-log-parts! conn job-id)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue