cbaines pushed a commit to branch master
in repository data-service.
commit 45e25c243682fc76a084ccc3f6c2c12cd8f2385e
Author: Christopher Baines <[email protected]>
AuthorDate: Fri Sep 9 12:33:15 2022 +0100
Make caching exceptions when querying for substitutes more reliable
---
guix-data-service/substitutes.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
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)))))