diff options
author | Christopher Baines <mail@cbaines.net> | 2024-08-15 11:43:29 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-08-15 11:43:29 +0100 |
commit | 586b9c1ada118a0cc7775f64698e4b941ea35fe1 (patch) | |
tree | e8e78ec87f3c6c932ee2cd7bbf3e15dbb1187a45 | |
parent | a90860d1ed3e866c9d0cfdbc1af1ad8181e95e9d (diff) | |
download | qa-frontpage-586b9c1ada118a0cc7775f64698e4b941ea35fe1.tar qa-frontpage-586b9c1ada118a0cc7775f64698e4b941ea35fe1.tar.gz |
Refresh issues less often and reduce the parallelism
To try and avoid overloading the QA data service.
-rw-r--r-- | guix-qa-frontpage/issue.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix-qa-frontpage/issue.scm b/guix-qa-frontpage/issue.scm index 06192bd..df5f9e0 100644 --- a/guix-qa-frontpage/issue.scm +++ b/guix-qa-frontpage/issue.scm @@ -306,7 +306,7 @@ metrics-registry #:key number-of-series-to-refresh) (define frequency - (* 15 60)) + (* 30 60)) (define issue-data/fiberized+cached (fiberize @@ -319,7 +319,7 @@ (list issue-number) #:version 3 #:ttl (/ frequency 2))) - #:parallelism 3)) + #:parallelism 2)) (define (refresh-data) (simple-format (current-error-port) |