guix-commits
[Top][All Lists]
Advanced

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

02/02: scripts: substitute: Tweak error reporting in process-substitutio


From: guix-commits
Subject: 02/02: scripts: substitute: Tweak error reporting in process-substitution.
Date: Wed, 17 Mar 2021 16:43:22 -0400 (EDT)

cbaines pushed a commit to branch master
in repository guix.

commit b48204259aa9cad80c5b23a4060e2d796007ec7a
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Mon Mar 15 16:05:24 2021 +0000

    scripts: substitute: Tweak error reporting in process-substitution.
    
    The call-with-connection-error-handling was added in
    20c08a8a45d0f137ead7c05e720456b2aea44402, but that error handling was
    previously inside of open-connection-for-uri/maybe, which is related
    to (call-)with-cached-connection which was used in process-substitution, but
    only actually used with call-with-cached-connection when used in
    fetch-narinfos.
    
    There's some handling for similar errors within with-networking, which is 
used
    within process-substitution.
    
    * guix/scripts/substitute.scm (process-substitution): Remove
    call-with-connection-error-handling call.
---
 guix/scripts/substitute.scm | 13 +++++--------
 1 file changed, 5 insertions(+), 8 deletions(-)

diff --git a/guix/scripts/substitute.scm b/guix/scripts/substitute.scm
index 812f299..2bbbafe 100755
--- a/guix/scripts/substitute.scm
+++ b/guix/scripts/substitute.scm
@@ -448,14 +448,11 @@ the current output port."
              (warning (G_ "while fetching ~a: server is somewhat slow~%")
                       (uri->string uri))
              (warning (G_ "try `--no-substitutes' if the problem persists~%")))
-           (call-with-connection-error-handling
-            uri
-            (lambda ()
-              (with-cached-connection uri port
-                (http-fetch uri #:text? #f
-                            #:port port
-                            #:keep-alive? #t
-                            #:buffered? #f)))))))
+           (with-cached-connection uri port
+             (http-fetch uri #:text? #f
+                         #:port port
+                         #:keep-alive? #t
+                         #:buffered? #f)))))
       (else
        (leave (G_ "unsupported substitute URI scheme: ~a~%")
               (uri->string uri)))))



reply via email to

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