From c0679185b8ff9dbf2f9c38f2f89f1f19a6d81de7 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Fri, 11 Mar 2022 13:27:59 +0000 Subject: [PATCH] Fix an issue with the /builds page --- guix-data-service/web/build/controller.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/guix-data-service/web/build/controller.scm b/guix-data-service/web/build/controller.scm index a70e10d..9e3b943 100644 --- a/guix-data-service/web/build/controller.scm +++ b/guix-data-service/web/build/controller.scm @@ -23,6 +23,7 @@ #:use-module (guix-data-service web render) #:use-module (guix-data-service web query-parameters) #:use-module (guix-data-service model build) + #:use-module (guix-data-service model system) #:use-module (guix-data-service model build-status) #:use-module (guix-data-service model build-server) #:use-module (guix-data-service model derivation) @@ -117,7 +118,7 @@ #:limit (assq-ref parsed-query-parameters 'limit_results))))) (systems - (with-thread-postgresql-connection valid-systems)) + (with-thread-postgresql-connection list-systems)) (targets (with-thread-postgresql-connection valid-targets)))