aboutsummaryrefslogtreecommitdiff
path: root/guix-build-coordinator
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2024-07-02 10:58:21 +0200
committerChristopher Baines <mail@cbaines.net>2024-07-02 14:39:38 +0200
commit0b260b8b16354b45f59c0eb0cf7aa2ca6b5ee9de (patch)
treefaaa028bc33abcb6e228b7c1fc2c06246b186e7f /guix-build-coordinator
parentbbcfebad74124f6301181c46d3d39021e732e687 (diff)
downloadbuild-coordinator-0b260b8b16354b45f59c0eb0cf7aa2ca6b5ee9de.tar
build-coordinator-0b260b8b16354b45f59c0eb0cf7aa2ca6b5ee9de.tar.gz
Reduce the sleep in the worker threads
Diffstat (limited to 'guix-build-coordinator')
-rw-r--r--guix-build-coordinator/utils/fibers.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/guix-build-coordinator/utils/fibers.scm b/guix-build-coordinator/utils/fibers.scm
index 2c7307f..93626c7 100644
--- a/guix-build-coordinator/utils/fibers.scm
+++ b/guix-build-coordinator/utils/fibers.scm
@@ -74,7 +74,7 @@ arguments of the worker thread procedure."
args
;; never give up, just keep retrying
(begin
- (sleep 5)
+ (sleep 1)
(initializer/safe)))))
(define (destructor/safe args)
@@ -100,7 +100,7 @@ arguments of the worker thread procedure."
(or success?
#t
(begin
- (sleep 5)
+ (sleep 1)
(destructor/safe args)))))
(define (process channel args)