aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2022-09-09 12:33:15 +0100
committerChristopher Baines <mail@cbaines.net>2022-09-09 12:33:15 +0100
commit45e25c243682fc76a084ccc3f6c2c12cd8f2385e (patch)
tree192ecf101e72a028f8b30135538d4a7f13d13e1a
parent076331325a4037240c0db138619412ca44ee43f4 (diff)
downloaddata-service-45e25c243682fc76a084ccc3f6c2c12cd8f2385e.tar
data-service-45e25c243682fc76a084ccc3f6c2c12cd8f2385e.tar.gz
Make caching exceptions when querying for substitutes more reliable
-rw-r--r--guix-data-service/substitutes.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/guix-data-service/substitutes.scm b/guix-data-service/substitutes.scm
index 7c8c5e6..953f693 100644
--- a/guix-data-service/substitutes.scm
+++ b/guix-data-service/substitutes.scm
@@ -149,4 +149,5 @@
(all-git-repositories conn))))
(simple-format #t "finished checking substitutes, now sleeping\n")
- (sleep (* 60 30))))))))
+ (sleep (* 60 30)))
+ #:unwind? #t)))))