diff options
author | Christopher Baines <mail@cbaines.net> | 2025-02-24 21:21:34 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2025-02-24 21:21:34 +0000 |
commit | 45a1128f52291d699e49ff234d6c8edc08d02caa (patch) | |
tree | c33fcdef9c9dc63c9a7c7d5060d59ba4caad965f | |
parent | 0de4248ab694a381e30bf4d6f938df63a851a3a4 (diff) | |
download | build-coordinator-45a1128f52291d699e49ff234d6c8edc08d02caa.tar build-coordinator-45a1128f52291d699e49ff234d6c8edc08d02caa.tar.gz |
Drop the data service request timeout
As with fibers issue #109, this causes excessive heap usage.
-rw-r--r-- | guix-build-coordinator/guix-data-service.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix-build-coordinator/guix-data-service.scm b/guix-build-coordinator/guix-data-service.scm index d4f6ea6..584bbbd 100644 --- a/guix-build-coordinator/guix-data-service.scm +++ b/guix-build-coordinator/guix-data-service.scm @@ -53,7 +53,7 @@ ;; Guile doesn't treat JSON as text, so decode the ;; body manually #:decode-body? #f)) - #:timeout 120)) + #:timeout 10)) (code (response-code response))) (unless (and (>= code 200) |