guix-commits
[Top][All Lists]
Advanced

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

09/14: substitute: Change connection cache handling in process-substitut


From: guix-commits
Subject: 09/14: substitute: Change connection cache handling in process-substitution.
Date: Mon, 22 Feb 2021 15:44:46 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit f50f5751fff4cfc6d5abba9681054569694b7a5c
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Thu Jan 7 20:21:50 2021 +0000

    substitute: Change connection cache handling in process-substitution.
    
    Just pass open-connection-for-uri/maybe to http-fetch, this removes the need
    for with-cached-connection and passing the port in.
    
    * guix/scripts/substitute.scm (fetch): Don't take a port as an argument, and
    pass open-connection-for-uri/maybe to http-fetch.
    (process-substitution): Don't call fetch with with-cached-connection.
---
 guix/scripts/substitute.scm | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/guix/scripts/substitute.scm b/guix/scripts/substitute.scm
index cd52ad7..5d4884a 100755
--- a/guix/scripts/substitute.scm
+++ b/guix/scripts/substitute.scm
@@ -170,7 +170,7 @@ again."
         (apply values result)))))
 
 (define* (fetch uri #:key (buffered? #t) (timeout? #t)
-                (keep-alive? #f) (port #f))
+                (keep-alive? #f))
   "Return a binary input port to URI and the number of bytes it's expected to
 provide.
 
@@ -199,7 +199,8 @@ connection (typically PORT) is kept open once data has been 
fetched from URI."
            (warning (G_ "while fetching ~a: server is somewhat slow~%")
                     (uri->string uri))
            (warning (G_ "try `--no-substitutes' if the problem persists~%")))
-         (http-fetch uri #:text? #f #:port port
+         (http-fetch uri #:text? #f
+                     #:open-connection open-connection-for-uri/maybe
                      #:keep-alive? keep-alive?
                      #:buffered? buffered?
                      #:verify-certificate? #f))))
@@ -752,10 +753,8 @@ the current output port."
     (let*-values (((raw download-size)
                    ;; 'guix publish' without '--cache' doesn't specify a
                    ;; Content-Length, so DOWNLOAD-SIZE is #f in this case.
-                   (with-cached-connection uri port
-                     (fetch uri #:buffered? #f #:timeout? #f
-                            #:port port
-                            #:keep-alive? #t)))
+                   (fetch uri #:buffered? #f #:timeout? #f
+                          #:keep-alive? #t))
                   ((progress)
                    (let* ((dl-size  (or download-size
                                         (and (equal? compression "none")



reply via email to

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