aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2021-12-19 21:18:32 +0000
committerChristopher Baines <mail@cbaines.net>2021-12-19 21:18:32 +0000
commitc7ee9568ae8a26a24d6abdc792c08d00dc978796 (patch)
treeeaf23b3de46deaa7a36b747d388145c5d75d26b7
parent598221621e57e0b9cd29fe3e489eb2de2a47b1e9 (diff)
downloadbuild-coordinator-c7ee9568ae8a26a24d6abdc792c08d00dc978796.tar
build-coordinator-c7ee9568ae8a26a24d6abdc792c08d00dc978796.tar.gz
Change the post build actions thread pool size
To be that of the number of parallel uploads, since that is what this now controls.
-rw-r--r--guix-build-coordinator/agent.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix-build-coordinator/agent.scm b/guix-build-coordinator/agent.scm
index 1fe0333..73d3c42 100644
--- a/guix-build-coordinator/agent.scm
+++ b/guix-build-coordinator/agent.scm
@@ -300,7 +300,7 @@
(let*-values (((perform-post-build-actions count-post-build-jobs
count-post-build-threads
list-post-build-jobs)
- (create-work-queue (+ 1 parallel-uploads)
+ (create-work-queue parallel-uploads
(lambda (build thunk)
(thunk))))