mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
This commit is contained in:
parent
8a4f074f64
commit
bef0e827a2
1 changed files with 6 additions and 2 deletions
|
@ -50,8 +50,12 @@ export class RollupIndexPatternCreationConfig extends IndexPatternCreationConfig
|
|||
}
|
||||
|
||||
async setRollupIndices() {
|
||||
this.rollupIndicesCapabilities = await getRollupIndices();
|
||||
this.rollupIndices = Object.keys(this.rollupIndicesCapabilities);
|
||||
try {
|
||||
this.rollupIndicesCapabilities = await getRollupIndices();
|
||||
this.rollupIndices = Object.keys(this.rollupIndicesCapabilities);
|
||||
} catch (e) {
|
||||
// Silently swallow failure responses such as expired trials
|
||||
}
|
||||
}
|
||||
|
||||
async getIndexPatternCreationOption(urlHandler) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue