From e388b739ed524d33254a2a6ce32141c784b4b7b6 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 31 Oct 2019 08:19:16 +0100 Subject: [PATCH] [HttpClient] Fix perf issue when doing thousands of requests with curl --- src/Symfony/Component/HttpClient/Response/CurlResponse.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Symfony/Component/HttpClient/Response/CurlResponse.php b/src/Symfony/Component/HttpClient/Response/CurlResponse.php index 4b25acf795..6771dcb6f2 100644 --- a/src/Symfony/Component/HttpClient/Response/CurlResponse.php +++ b/src/Symfony/Component/HttpClient/Response/CurlResponse.php @@ -142,7 +142,6 @@ final class CurlResponse implements ResponseInterface // Schedule the request in a non-blocking way $multi->openHandles[$id] = [$ch, $options]; curl_multi_add_handle($multi->handle, $ch); - self::perform($multi); } /**