diff options
-rw-r--r-- | guix/cve.scm | 2 |
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 () |