diff options
author | Christopher Baines <mail@cbaines.net> | 2024-06-22 10:28:30 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-06-22 10:43:09 +0100 |
commit | e33931e27e2b7abb0c2529814d94cc17988e7f46 (patch) | |
tree | 190f3c70d8291a9d5ce57cb5a715105a76d5d2bd /guix-qa-frontpage/server.scm | |
parent | 832be002e40f38e1a544a35d58fce06a8f07e771 (diff) | |
download | qa-frontpage-e33931e27e2b7abb0c2529814d94cc17988e7f46.tar qa-frontpage-e33931e27e2b7abb0c2529814d94cc17988e7f46.tar.gz |
Query for branch changes by system
And don't store the full data in the database, just the counts. This should
avoid timeout issues with the data service and speed up storing and fetching
the data from the cache.
Diffstat (limited to 'guix-qa-frontpage/server.scm')
-rw-r--r-- | guix-qa-frontpage/server.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix-qa-frontpage/server.scm b/guix-qa-frontpage/server.scm index a46777a..fbfe29c 100644 --- a/guix-qa-frontpage/server.scm +++ b/guix-qa-frontpage/server.scm @@ -186,7 +186,7 @@ package-reproducibility)))) (('GET "branch" branch) (let ((revisions - derivation-changes + derivation-changes-counts substitute-availability package-reproducibility up-to-date-with-master @@ -211,7 +211,7 @@ #:sxml (branch-view branch revisions - derivation-changes + derivation-changes-counts substitute-availability package-reproducibility up-to-date-with-master |