mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Add sleep time between reloading empty kibana index and trying to access in browser. It works locally but need to see if this resolves the failures on Travis.
This commit is contained in:
parent
bc1c161fa9
commit
d10ed2fb66
1 changed files with 3 additions and 0 deletions
|
@ -39,6 +39,9 @@ define(function (require) {
|
|||
.then(function loadIfEmptyMakelogs() {
|
||||
return scenarioManager.loadIfEmpty('makelogs');
|
||||
})
|
||||
.then(function () {
|
||||
return common.sleep(2500);
|
||||
})
|
||||
.then(function () {
|
||||
return common.tryForTime(25000, function () {
|
||||
return remote.get(url.format(_.assign(config.kibana, {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue