Skip to content

Commit

Permalink
Remove unused time field error.
Browse files Browse the repository at this point in the history
  • Loading branch information
cjcenizal committed Jul 11, 2017
1 parent ffc879f commit caaf63d
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ uiModules.get('apps/management')
this.isFetchingTimeFieldOptions = false;
this.isCreatingIndexPattern = false;
this.doesIncludeSystemIndices = false;
this.timeFieldError = undefined;
let allIndices = [];
let matchingIndices = [];
let partialMatchingIndices = [];
Expand Down Expand Up @@ -228,10 +227,6 @@ uiModules.get('apps/management')
this.timeFieldOptions = extractTimeFieldsFromFields(fields);
})
.catch(err => {
if (err instanceof IndexPatternMissingIndices) {
this.timeFieldError = 'Unable to fetch mapping. Do you have indices matching the pattern?';
}

notify.error(err);
})
.finally(() => {
Expand Down

0 comments on commit caaf63d

Please sign in to comment.