diff options
Diffstat (limited to 'guix-build-coordinator/guix-data-service.scm')
-rw-r--r-- | guix-build-coordinator/guix-data-service.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/guix-build-coordinator/guix-data-service.scm b/guix-build-coordinator/guix-data-service.scm index e2ecbe7..584bbbd 100644 --- a/guix-build-coordinator/guix-data-service.scm +++ b/guix-build-coordinator/guix-data-service.scm @@ -27,6 +27,7 @@ #:use-module (json) #:use-module (web client) #:use-module (web response) + #:use-module (knots timeout) #:use-module (guix-build-coordinator utils) #:use-module (guix-build-coordinator datastore) #:export (send-build-event-to-guix-data-service @@ -51,7 +52,8 @@ #:body body ;; Guile doesn't treat JSON as text, so decode the ;; body manually - #:decode-body? #f)))) + #:decode-body? #f)) + #:timeout 10)) (code (response-code response))) (unless (and (>= code 200) |