From 7a8e39d5da823d8ebad7ff1f054e8300a9b39903 Mon Sep 17 00:00:00 2001 From: LeeDr Date: Tue, 1 Dec 2015 14:52:45 -0600 Subject: [PATCH] Increase ElasticSearch client timeout from 30s to 5m (probably a bit overkill). --- test/fixtures/scenarioManager.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/fixtures/scenarioManager.js b/test/fixtures/scenarioManager.js index 84376c0f70ca..08856286c722 100644 --- a/test/fixtures/scenarioManager.js +++ b/test/fixtures/scenarioManager.js @@ -7,7 +7,8 @@ function ScenarioManager(server) { if (!server) throw new Error('No server defined'); this.client = new elasticsearch.Client({ - host: server + host: server, + requestTimeout: 300000 }); }