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

This commit is contained in:
LeeDr 2015-12-01 14:52:45 -06:00
parent 4f863617c5
commit 7a8e39d5da

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