diff options
author | Christopher Baines <mail@cbaines.net> | 2020-05-23 13:41:25 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-05-23 13:41:25 +0100 |
commit | 6817d044a292c03411cec64cc9d17c5cca9d7605 (patch) | |
tree | bb9aec60d03f6f2e03fcadc2f36da8bc1126e1d8 /guix-build-coordinator | |
parent | 80c6863c54a5ee41c3817c7c849327fb74b11af3 (diff) | |
download | build-coordinator-6817d044a292c03411cec64cc9d17c5cca9d7605.tar build-coordinator-6817d044a292c03411cec64cc9d17c5cca9d7605.tar.gz |
Fix re-queuing jobs
Diffstat (limited to 'guix-build-coordinator')
-rw-r--r-- | guix-build-coordinator/utils.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix-build-coordinator/utils.scm b/guix-build-coordinator/utils.scm index 28e245d..27f1988 100644 --- a/guix-build-coordinator/utils.scm +++ b/guix-build-coordinator/utils.scm @@ -561,7 +561,7 @@ References: ~a~%" "exception when handling job: ~A\n" exn) ;; Add the job back to the queue so that it's tried again - (process-job job-args)) + (apply process-job job-args)) (lambda () (apply proc job-args)) #:unwind? #t) |