Increase elasticsearch client timeout from 5 to 50 minutes!

This commit is contained in:
LeeDr 2015-12-02 10:51:13 -06:00
parent 44718237b2
commit e7edd79536

View file

@ -9,7 +9,7 @@ function ScenarioManager(server) {
// NOTE: some large sets of test data can take several minutes to load
this.client = new elasticsearch.Client({
host: server,
requestTimeout: 300000
requestTimeout: 3000000
});
}