From 49f9aa4822ca7de57c7b9b0516d75dc98cdce0e3 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Sun, 2 Feb 2025 01:23:49 +0100 Subject: [PATCH] Force add resources parallelism to 1 for some resource pools This'll be the default in coming revisions of knots, and is neccessary for pools being used to share a single object. --- guix-data-service/jobs/load-new-guix-revision.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/guix-data-service/jobs/load-new-guix-revision.scm b/guix-data-service/jobs/load-new-guix-revision.scm index cd76127..f82b27e 100644 --- a/guix-data-service/jobs/load-new-guix-revision.scm +++ b/guix-data-service/jobs/load-new-guix-revision.scm @@ -1885,6 +1885,7 @@ SELECT 1 FROM derivation_source_file_nars WHERE derivation_source_file_id = $1" db-conn) 1 #:destructor (const #t) ; TODO Remove + #:add-resources-parallelism 1 ; TODO Remove #:name "postgres" #:min-size 0)) @@ -2231,6 +2232,7 @@ SELECT 1 FROM derivation_source_file_nars WHERE derivation_source_file_id = $1" (const channel-instances-conn) 1 #:destructor (const #t) ; TODO Remove + #:add-resources-parallelism 1 ; TODO Remove #:name "postgres" #:min-size 0)))