mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Reduce elasticsearch client timeout back down to 5 minutes. Use fieldName variable consistently in _index_pattern_popularity.
This commit is contained in:
parent
6a0966ab0a
commit
290974770d
2 changed files with 3 additions and 3 deletions
2
test/fixtures/scenarioManager.js
vendored
2
test/fixtures/scenarioManager.js
vendored
|
@ -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: 3000000
|
||||
requestTimeout: 300000
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -47,8 +47,8 @@ define(function (require) {
|
|||
return common.sleep(1000);
|
||||
})
|
||||
.then(function openControlsByName() {
|
||||
common.debug('Starting openControlsByName "geo.coordinates"');
|
||||
return settingsPage.openControlsByName('geo.coordinates');
|
||||
common.debug('Starting openControlsByName (' + fieldName + ')');
|
||||
return settingsPage.openControlsByName(fieldName);
|
||||
})
|
||||
.then(function increasePopularity() {
|
||||
common.debug('increasePopularity');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue