diff options
author | Christopher Baines <mail@cbaines.net> | 2025-01-15 09:52:35 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2025-01-15 09:56:02 +0000 |
commit | 7eb6ecad67c15fcd3927a1bd6cc5a8c95ce2dd43 (patch) | |
tree | d6cb41b6e69d1180fffa598ed81e811aa3f5d7be /guix-build-coordinator/guix-data-service.scm | |
parent | 44c81082c34c6d819743cf452db8d1769301805a (diff) | |
download | build-coordinator-7eb6ecad67c15fcd3927a1bd6cc5a8c95ce2dd43.tar build-coordinator-7eb6ecad67c15fcd3927a1bd6cc5a8c95ce2dd43.tar.gz |
Don't use a default timeout to avoid confusion
Since with-port-timeouts is both from Knots and the build coordinator.
Diffstat (limited to 'guix-build-coordinator/guix-data-service.scm')
-rw-r--r-- | guix-build-coordinator/guix-data-service.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix-build-coordinator/guix-data-service.scm b/guix-build-coordinator/guix-data-service.scm index 2899870..d4f6ea6 100644 --- a/guix-build-coordinator/guix-data-service.scm +++ b/guix-build-coordinator/guix-data-service.scm @@ -52,7 +52,8 @@ #:body body ;; Guile doesn't treat JSON as text, so decode the ;; body manually - #:decode-body? #f)))) + #:decode-body? #f)) + #:timeout 120)) (code (response-code response))) (unless (and (>= code 200) |