guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: cve: Remove now unnecessary HTTP caching.


From: Ludovic Courtès
Subject: 02/03: cve: Remove now unnecessary HTTP caching.
Date: Mon, 23 May 2016 16:06:03 +0000 (UTC)

civodul pushed a commit to branch master
in repository guix.

commit 86cf13033ec23f24665e6dcfafea2e43080f01b0
Author: Ludovic Courtès <address@hidden>
Date:   Mon May 23 17:46:59 2016 +0200

    cve: Remove now unnecessary HTTP caching.
    
    * guix/cve.scm (call-with-cve-port): Use 'http-fetch' instead of
    'http-fetch/cached'.
---
 guix/cve.scm |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/cve.scm b/guix/cve.scm
index eeee450..3956864 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 ()



reply via email to

[Prev in Thread] Current Thread [Next in Thread]