From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:52912) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jAgln-00057S-L9 for guix-patches@gnu.org; Sat, 07 Mar 2020 16:14:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jAglm-0001Ww-Q0 for guix-patches@gnu.org; Sat, 07 Mar 2020 16:14:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:41676) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jAglm-0001WM-Mf for guix-patches@gnu.org; Sat, 07 Mar 2020 16:14:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jAglm-0001A7-Hz for guix-patches@gnu.org; Sat, 07 Mar 2020 16:14:02 -0500 Subject: [bug#39873] [PATCH 1/3] substitute: Use the same port for multiple request batches. Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <87imjmeagu.fsf@cbaines.net> <20200302210735.13337-1-mail@cbaines.net> Date: Sat, 07 Mar 2020 22:12:58 +0100 In-Reply-To: <20200302210735.13337-1-mail@cbaines.net> (Christopher Baines's message of "Mon, 2 Mar 2020 21:07:33 +0000") Message-ID: <875zffg97p.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Christopher Baines Cc: 39873@debbugs.gnu.org Hi Christopher! Christopher Baines skribis: > In http-multiple-get. Leftover? :-) > * guix/scripts/substitute.scm (http-multiple-get): Switch port to p in one > occurrence. > --- > guix/scripts/substitute.scm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/guix/scripts/substitute.scm b/guix/scripts/substitute.scm > index dfb975a24a..5ed43d36c9 100755 > --- a/guix/scripts/substitute.scm > +++ b/guix/scripts/substitute.scm > @@ -545,7 +545,7 @@ initial connection on which HTTP requests are sent." > (() > (reverse result)) > (remainder > - (connect port remainder result)))) > + (connect p remainder result)))) LGTM! Did you notice an occurrence of this bug somewhere? Ludo=E2=80=99.