[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/07: Fix an issue with the /builds page
From: |
Christopher Baines |
Subject: |
07/07: Fix an issue with the /builds page |
Date: |
Fri, 11 Mar 2022 08:28:40 -0500 (EST) |
cbaines pushed a commit to branch master
in repository data-service.
commit c0679185b8ff9dbf2f9c38f2f89f1f19a6d81de7
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Fri Mar 11 13:27:59 2022 +0000
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)))
- branch master updated (fe556f4 -> c067918), Christopher Baines, 2022/03/11
- 01/07: Compute more cross derivations, Christopher Baines, 2022/03/11
- 04/07: Extract out the code for starting an inferior, Christopher Baines, 2022/03/11
- 06/07: Close the load revision inferior prior to inserting data, Christopher Baines, 2022/03/11
- 07/07: Fix an issue with the /builds page,
Christopher Baines <=
- 02/07: Disable value history in the inferior repl, Christopher Baines, 2022/03/11
- 03/07: Process each system target pair individually, Christopher Baines, 2022/03/11
- 05/07: Add to the hardcoded list of valid targets, Christopher Baines, 2022/03/11