Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2016-12-15 02:25:00 +0300
committermattab <matthieu.aubry@gmail.com>2016-12-15 02:31:09 +0300
commit6351b726a2b7fce568c20e718d7501279f491108 (patch)
tree55733f86f75a42b151206280c79abb14d3ed3ac2 /plugins/TestRunner
parent1e572c93f4ae8aa410556b57483641f57c42e876 (diff)
Prevent timeout when synchronising UI tests screenshots
Diffstat (limited to 'plugins/TestRunner')
-rw-r--r--plugins/TestRunner/Commands/SyncScreenshots.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/TestRunner/Commands/SyncScreenshots.php b/plugins/TestRunner/Commands/SyncScreenshots.php
index fe032c1fe7..b0f7616598 100644
--- a/plugins/TestRunner/Commands/SyncScreenshots.php
+++ b/plugins/TestRunner/Commands/SyncScreenshots.php
@@ -85,7 +85,7 @@ class SyncScreenshots extends ConsoleCommand
$response = Http::sendHttpRequest(
$url,
- $timeout = 60,
+ $timeout = 160,
$userAgent = null,
$destinationPath = null,
$followDepth = 0,
@@ -116,7 +116,7 @@ class SyncScreenshots extends ConsoleCommand
Http::sendHttpRequest(
$url,
- $timeout = 60,
+ $timeout = 160,
$userAgent = null,
$downloadTo,
$followDepth = 0,