summaryrefslogtreecommitdiff
path: root/guix/cve.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2016-05-23 17:46:59 +0200
committerLudovic Courtès <ludo@gnu.org>2016-05-23 18:05:46 +0200
commit86cf13033ec23f24665e6dcfafea2e43080f01b0 (patch)
tree6423684860aac9d85a50320e21be5556c1f5153a /guix/cve.scm
parent5cdd21c7fec49e99f20f9ec0444ca1b25ae0bac4 (diff)
downloadgnu-guix-86cf13033ec23f24665e6dcfafea2e43080f01b0.tar
gnu-guix-86cf13033ec23f24665e6dcfafea2e43080f01b0.tar.gz
cve: Remove now unnecessary HTTP caching.
* guix/cve.scm (call-with-cve-port): Use 'http-fetch' instead of 'http-fetch/cached'.
Diffstat (limited to 'guix/cve.scm')
-rw-r--r--guix/cve.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/cve.scm b/guix/cve.scm
index eeee450205..3956864938 100644
--- a/guix/cve.scm
+++ b/guix/cve.scm
@@ -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 ()