aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2022-05-21 12:13:02 +0100
committerChristopher Baines <mail@cbaines.net>2022-05-21 12:13:02 +0100
commit4e26ba6d7a62de4b3192a1d75f2390d07bd4e149 (patch)
tree98dfde07f08ddd6e24bcdc6d1673ef297dc40368
parent5bd0db841cb38043074ba8ddddaabba5661d9d4a (diff)
downloadbuild-coordinator-4e26ba6d7a62de4b3192a1d75f2390d07bd4e149.tar
build-coordinator-4e26ba6d7a62de4b3192a1d75f2390d07bd4e149.tar.gz
Fix the guix-data-service request timeout
Which was 30,000 seconds, rather than 30 seconds.
-rw-r--r--guix-build-coordinator/guix-data-service.scm2
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 c662c66..26f9c88 100644
--- a/guix-build-coordinator/guix-data-service.scm
+++ b/guix-build-coordinator/guix-data-service.scm
@@ -42,7 +42,7 @@
(let*-values
(((response body)
- (with-timeout 30000 ; 30 seconds
+ (with-timeout 30 ; 30 seconds
(raise-exception
(make-exception-with-message
"timeout making guix-data-service request"))