mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-19 01:11:55 -05:00
substitute: open-connection-for-uri/maybe add #:verify-certificate?.
As this is used by http-fetch and http-multiple-get when they call the specified open connection procedure. * guix/scripts/substitute.scm (open-connection-for-uri/maybe): Support #:verify-certificate?.
This commit is contained in:
parent
205833b72c
commit
f50b501a74
1 changed files with 4 additions and 2 deletions
|
@ -322,7 +322,8 @@ (define %unreachable-hosts
|
|||
(define* (open-connection-for-uri/maybe uri
|
||||
#:key
|
||||
fresh?
|
||||
(time %fetch-timeout))
|
||||
(time %fetch-timeout)
|
||||
verify-certificate?)
|
||||
"Open a connection to URI via 'open-connection-for-uri/cached' and return a
|
||||
port to it, or, if connection failed, print a warning and return #f. Pass
|
||||
#:fresh? to 'open-connection-for-uri/cached'."
|
||||
|
@ -332,7 +333,8 @@ (define host
|
|||
(catch #t
|
||||
(lambda ()
|
||||
(open-connection-for-uri/cached uri #:timeout time
|
||||
#:fresh? fresh?))
|
||||
#:fresh? fresh?
|
||||
#:verify-certificate? verify-certificate?))
|
||||
(match-lambda*
|
||||
(('getaddrinfo-error error)
|
||||
(unless (hash-ref %unreachable-hosts host)
|
||||
|
|
Loading…
Reference in a new issue