From 0b260b8b16354b45f59c0eb0cf7aa2ca6b5ee9de Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Tue, 2 Jul 2024 10:58:21 +0200 Subject: Reduce the sleep in the worker threads --- guix-build-coordinator/utils/fibers.scm | 4 ++-- 1 file 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) -- cgit v1.2.3