Skip to content

Commit

Permalink
[6.4] [console_extensions] check that elasticsearch config is availab…
Browse files Browse the repository at this point in the history
…le (elastic#22105)

(cherry picked from commit 6c9788d)
  • Loading branch information
Spencer committed Aug 17, 2018
1 parent b7879bb commit 15c4328
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion x-pack/plugins/console_extensions/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ export function consoleExtensions(kibana) {
return (
config.get('console_extensions.enabled') &&
config.has('console.enabled') &&
config.get('console.enabled')
config.get('console.enabled') &&
config.has('elasticsearch') &&
!config.get('elasticsearch.tribe.url')
);
},

Expand Down

0 comments on commit 15c4328

Please sign in to comment.