aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2022-03-11 13:27:59 +0000
committerChristopher Baines <mail@cbaines.net>2022-03-11 13:27:59 +0000
commitc0679185b8ff9dbf2f9c38f2f89f1f19a6d81de7 (patch)
tree9af436f520ac51ff2db7bbc5cad5797d92a2b4b5
parent097e22ab5e8c59b0ffce1867a54eb0622ab75ce4 (diff)
downloaddata-service-c0679185b8ff9dbf2f9c38f2f89f1f19a6d81de7.tar
data-service-c0679185b8ff9dbf2f9c38f2f89f1f19a6d81de7.tar.gz
Fix an issue with the /builds page
-rw-r--r--guix-data-service/web/build/controller.scm3
1 files changed, 2 insertions, 1 deletions
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)))