From 78dd02e81d58a88df4d7658a2c470003505cb752 Mon Sep 17 00:00:00 2001 From: kodumbeats Date: Fri, 16 Jul 2021 09:50:25 -0400 Subject: [PATCH] Revert increased curl timeout --- tests/e2e/Client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/Client.php b/tests/e2e/Client.php index 3bf4b164d9..82fd642a08 100644 --- a/tests/e2e/Client.php +++ b/tests/e2e/Client.php @@ -189,7 +189,7 @@ class Client curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'); curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 0); - curl_setopt($ch, CURLOPT_TIMEOUT, 60); + curl_setopt($ch, CURLOPT_TIMEOUT, 15); curl_setopt($ch, CURLOPT_HEADERFUNCTION, function ($curl, $header) use (&$responseHeaders) { $len = strlen($header); $header = explode(':', $header, 2);