diff options
author | Christopher Baines <mail@cbaines.net> | 2024-05-16 17:48:43 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-05-17 14:39:38 +0100 |
commit | f2766365fbcf528ba702ab1eacb49bae468f3119 (patch) | |
tree | fa39bf51477190ace62d855ee7c08d18be98d57f | |
parent | 7e79793ced13f4c9f1cd9b0c8b39c38f43087e54 (diff) | |
download | qa-frontpage-f2766365fbcf528ba702ab1eacb49bae468f3119.tar qa-frontpage-f2766365fbcf528ba702ab1eacb49bae468f3119.tar.gz |
Use cooperative scheduling for fibers
To simplify things.
-rw-r--r-- | guix-qa-frontpage/server.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/guix-qa-frontpage/server.scm b/guix-qa-frontpage/server.scm index dba8e61..3f84a08 100644 --- a/guix-qa-frontpage/server.scm +++ b/guix-qa-frontpage/server.scm @@ -858,6 +858,7 @@ has no patches or has been closed.") "https://data.qa.guix.gnu.org" metrics-registry)) (wait finished?)) + #:hz 0 #:parallelism 1))) (call-with-sigint @@ -887,5 +888,6 @@ has no patches or has been closed.") #:port port) (wait finished?)) - #:parallelism 2)) + #:hz 0 + #:parallelism 1)) finished?))) |