~ruther/guix-local

86cf13033ec23f24665e6dcfafea2e43080f01b0 — Ludovic Courtès 10 years ago 5cdd21c
cve: Remove now unnecessary HTTP caching.

* guix/cve.scm (call-with-cve-port): Use 'http-fetch' instead of
'http-fetch/cached'.
1 files changed, 1 insertions(+), 1 deletions(-)

M guix/cve.scm
M guix/cve.scm => guix/cve.scm +1 -1
@@ 74,7 74,7 @@

(define (call-with-cve-port uri ttl proc)
  "Pass PROC an input port from which to read the CVE stream."
  (let ((port (http-fetch/cached uri #:ttl ttl)))
  (let ((port (http-fetch uri)))
    (dynamic-wind
      (const #t)
      (lambda ()