diff options
author | Christopher Baines <mail@cbaines.net> | 2020-03-02 20:13:39 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-04-26 19:37:22 +0100 |
commit | 121191f23ae89415dfbbd3052c7342188cded135 (patch) | |
tree | 3ba58bfb41ec41bdc5e63b0b266af7a46290a5b0 /guix/scripts/substitute.scm | |
parent | 910bf1f7a11b669b9c307fb5af8c1fb0be01d537 (diff) |
substitute: Use the same port for multiple request batches.
In http-multiple-get.
* guix/scripts/substitute.scm (http-multiple-get): Switch port to p in one
occurrence.
Diffstat (limited to 'guix/scripts/substitute.scm')
-rwxr-xr-x | guix/scripts/substitute.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/substitute.scm b/guix/scripts/substitute.scm index 95b47a7816..2cb240c2a0 100755 --- a/guix/scripts/substitute.scm +++ b/guix/scripts/substitute.scm @@ -538,7 +538,7 @@ initial connection on which HTTP requests are sent." (() (reverse result)) (remainder - (connect port remainder result)))) + (connect p remainder result)))) ((head tail ...) (let* ((resp (read-response p)) (body (response-body-port resp)) |