Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Rashid Khan committed Sep 9, 2013
2 parents a428f9e + 58ccc29 commit cad7784
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions js/services.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,10 @@ angular.module('kibana.services', [])
if(status === 0) {
alertSrv.set('Error',"Could not contact Elasticsearch at "+config.elasticsearch+
". Please ensure that Elasticsearch is reachable from your system." ,'error');
} else {
alertSrv.set('Error',"Could not find "+config.elasticsearch+"/"+indices.join(',')+"/_mapping. If you"+
" are using a proxy, ensure it is configured correctly",'error');
} else {
alertSrv.set('Error',"No index found at "+config.elasticsearch+"/" +
indices.join(',')+"/_mapping. Please create at least one index." +
"If you're using a proxy ensure it is configured correctly.",'error');
}
});

Expand Down Expand Up @@ -963,4 +964,4 @@ angular.module('kibana.services', [])
return false;
});
};
});
});

0 comments on commit cad7784

Please sign in to comment.