Ludovic Courtès schreef op do 03-03-2022 om 22:14 [+0100]: > +(define (request-rate-limit-reached?) > +  "Return true if the rate limit has been reached." > +  (and %rate-limit-reset-time > +       (match (< (car (gettimeofday)) %rate-limit-reset-time) > +         (#t #t) > +         (#f > +          (set! %rate-limit-reset-time #f) > +          #f)))) The clocks used by the GitHub server cannot exactly be the clock of the local Guix (at least, not in a realistic setting). WDYT of adding a little margin, accounting for the impossibility of clocks exactly matching and allowing for some clock skew? (< (car (gettimeofday)) (+ [5 minutes] %rate-limit-reset-time)) Greetings, Maxime.