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:
Ludovic Courtès 2016-05-23 17:46:59 +02:00
parent 5cdd21c7fe
commit 86cf13033e
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@
(define (call-with-cve-port uri ttl proc) (define (call-with-cve-port uri ttl proc)
"Pass PROC an input port from which to read the CVE stream." "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 (dynamic-wind
(const #t) (const #t)
(lambda () (lambda ()