mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
cve: Remove now unnecessary HTTP caching.
* guix/cve.scm (call-with-cve-port): Use 'http-fetch' instead of 'http-fetch/cached'.
This commit is contained in:
parent
5cdd21c7fe
commit
86cf13033e
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ (define %past-year-ttl
|
|||
|
||||
(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 ()
|
||||
|
|
Loading…
Reference in a new issue