From 14f506d7affd2f0274188e77bb282141c3659088 Mon Sep 17 00:00:00 2001 From: Nickolas Malovanets Date: Wed, 23 Oct 2024 19:33:51 +0300 Subject: [PATCH] Hydrate call can receive a 100-continue header. --- Model/Http/Client/Command/Client/Curl.php | 1 - 1 file changed, 1 deletion(-) diff --git a/Model/Http/Client/Command/Client/Curl.php b/Model/Http/Client/Command/Client/Curl.php index 3eb7db8..34b9985 100644 --- a/Model/Http/Client/Command/Client/Curl.php +++ b/Model/Http/Client/Command/Client/Curl.php @@ -60,7 +60,6 @@ protected function makeRequest($method, $uri, $params = []) } $this->curlOption(CURLOPT_HTTPHEADER, $heads); } - $this->curlOption(CURLOPT_HTTPHEADER, ['Expect:']); if (count($this->_cookies)) { $cookies = []; foreach ($this->_cookies as $k => $v) {