guix-commits
[Top][All Lists]
Advanced

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

01/14: substitute: Remove buffer handling from fetch.


From: guix-commits
Subject: 01/14: substitute: Remove buffer handling from fetch.
Date: Mon, 22 Feb 2021 15:44:44 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit fbd61b5d3de353bfa468641d087bc53aaa1e63a5
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Thu Jan 7 19:36:17 2021 +0000

    substitute: Remove buffer handling from fetch.
    
    http-fetch does this, so just set the right option.
    
    * guix/scripts/substitute.scm (fetch): Remove buffering code, and pass
     #:buffered? to http-fetch.
---
 guix/scripts/substitute.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/guix/scripts/substitute.scm b/guix/scripts/substitute.scm
index f9bcead..88610a0 100755
--- a/guix/scripts/substitute.scm
+++ b/guix/scripts/substitute.scm
@@ -204,10 +204,9 @@ connection (typically PORT) is kept open once data has 
been fetched from URI."
              (when (or (not port) (port-closed? port))
                (set! port (guix:open-connection-for-uri
                            uri #:verify-certificate? #f)))
-             (unless (or buffered? (not (file-port? port)))
-               (setvbuf port 'none))
              (http-fetch uri #:text? #f #:port port
                          #:keep-alive? keep-alive?
+                         #:buffered? buffered?
                          #:verify-certificate? #f))))))
     (else
      (leave (G_ "unsupported substitute URI scheme: ~a~%")



reply via email to

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