From 7bfc8081c9ff968a7d8bac63b33a4ca811c0511d Mon Sep 17 00:00:00 2001 From: Jeremy Kauffman Date: Mon, 23 Dec 2019 10:09:02 -0500 Subject: [PATCH] actually up timeout to 15s for transifex --- lib/thirdparty/Transifex.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/thirdparty/Transifex.class.php b/lib/thirdparty/Transifex.class.php index cf62356d..68bbb333 100644 --- a/lib/thirdparty/Transifex.class.php +++ b/lib/thirdparty/Transifex.class.php @@ -14,7 +14,7 @@ class Transifex return json_decode(CurlWithCache::get($url, [], [ 'password' => 'api:' . Config::get(Config::TRANSIFEX_API_KEY), 'cache' => $cache ? 1000 * 60 * 60 * 8 : false, - 'timeout' => 5 + 'timeout' => 15 ]), true); } }