You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.log(`[Elastic]: index ${config.VOCABULARY_INDEX} does not exist in this elasticsearch instance. Please create it before running this program`) :
82
+
if(response.body===false){
83
+
console.log(`[Elastic]: index ${config.VOCABULARY_INDEX} does not exist in this elasticsearch instance. The index will be created now.`)
84
+
this.createIndex(config.VOCABULARY_INDEX);
85
+
}else{
75
86
console.log(`[Elastic]: index ${config.VOCABULARY_INDEX} exists and is healthy.`)
console.log(`[Elastic]: index ${config.APPLICATION_PROFILE_INDEX} does not exist in this elasticsearch instance. Please create it before running this program`) :
91
+
if(response.body===false){
92
+
console.log(`[Elastic]: index ${config.APPLICATION_PROFILE_INDEX} does not exist in this elasticsearch instance. The index will be created now.`)
0 commit comments