From 0e81d16feb1d83b704c14adeb73676a773ab1809 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20M=C3=A9tais?= Date: Tue, 15 Sep 2015 07:37:33 +0200 Subject: [PATCH] Reduce the timeout from 45 to 30s --- lib/tools/phantomas/phantomasWrapper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tools/phantomas/phantomasWrapper.js b/lib/tools/phantomas/phantomasWrapper.js index f9ff33d..65d53d7 100644 --- a/lib/tools/phantomas/phantomasWrapper.js +++ b/lib/tools/phantomas/phantomasWrapper.js @@ -21,7 +21,7 @@ var PhantomasWrapper = function() { // Cusomizable options 'engine': task.options.phantomasEngine || 'webkit', - 'timeout': task.options.timeout || 45, + 'timeout': task.options.timeout || 30, 'js-deep-analysis': task.options.jsDeepAnalysis || false, 'user-agent': (task.options.device === 'desktop') ? 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36' : null, 'tablet': (task.options.device === 'tablet'),