diff options
-rw-r--r-- | guix-qa-frontpage/branch.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/guix-qa-frontpage/branch.scm b/guix-qa-frontpage/branch.scm index a9a37b9..9512a39 100644 --- a/guix-qa-frontpage/branch.scm +++ b/guix-qa-frontpage/branch.scm @@ -113,7 +113,11 @@ (assoc-ref branch "name")) (string=? (assoc-ref branch "commit") ""))) - (get-git-remote-branches "origin"))))) + (retry-on-error + (lambda () + (get-git-remote-branches "origin")) + #:times 6 + #:delay-seconds 20))))) (let* ((initial-ordered-branches (stable-sort branches |