From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:43438) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j8sIF-0006Oh-KU for guix-patches@gnu.org; Mon, 02 Mar 2020 16:08:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j8sIE-0003Fm-Nh for guix-patches@gnu.org; Mon, 02 Mar 2020 16:08:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:60682) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1j8sIE-0003FW-Iv for guix-patches@gnu.org; Mon, 02 Mar 2020 16:08:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1j8sIE-0001uv-Ei for guix-patches@gnu.org; Mon, 02 Mar 2020 16:08:02 -0500 Subject: [bug#39873] [PATCH 1/3] substitute: Use the same port for multiple request batches. Resent-Message-ID: From: Christopher Baines Date: Mon, 2 Mar 2020 21:07:33 +0000 Message-Id: <20200302210735.13337-1-mail@cbaines.net> In-Reply-To: <87imjmeagu.fsf@cbaines.net> References: <87imjmeagu.fsf@cbaines.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 39873@debbugs.gnu.org In http-multiple-get. * 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)))) ((head tail ...) (let* ((resp (read-response p)) (body (response-body-port resp)) -- 2.25.0