Skip to content
Snippets Groups Projects
Commit 3f4adea0 authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

[fix] Fix ES node selection

parent 38238ab9
No related branches found
No related tags found
No related merge requests found
Pipeline #7869 failed
......@@ -90,7 +90,7 @@ function ESPluginSettingsController ($scope, $window, $q, $translate, $ionicPop
$scope.showNodePopup(node)
.then(function(newNode) {
if (newNode.host == $scope.formData.host &&
if (newNode.host === $scope.formData.host &&
newNode.port == $scope.formData.port &&
newNode.useSsl == $scope.formData.useSsl) {
UIUtils.loading.hide();
......@@ -194,7 +194,7 @@ function ESPluginSettingsController ($scope, $window, $q, $translate, $ionicPop
})
.then(function (peer) {
if (!peer) return;
var esEps = peer.getEndpoints().reduce(function(res, ep){
var esEps = (peer.getEsEndpoints() || []).reduce(function(res, ep){
var esEp = esHttp.node.parseEndPoint(ep);
return esEp ? res.concat(esEp) : res;
}, []);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment