Increase ElasticSearch client timeout from 30s to 5m (probably a bit overkill).

Fixes #5546
This commit is contained in:
LeeDr 2015-12-01 14:52:45 -06:00 committed by Lee Drengenberg
parent c6a4ca7cd1
commit 8e72b3ff09

View file

@ -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
});
}