You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by al...@apache.org on 2015/09/16 18:56:49 UTC

[2/2] ambari git commit: AMBARI-13117. “Oozie-HA Quick links" in Ambari points to incorrect URL after enabling SSL (alexantonenko)

AMBARI-13117. “Oozie-HA Quick links" in Ambari points to incorrect URL after enabling SSL (alexantonenko)


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/484e3610
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/484e3610
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/484e3610

Branch: refs/heads/branch-2.1
Commit: 484e361078a1a854af854d6580fe2beff582be21
Parents: 9cd683d
Author: Alex Antonenko <hi...@gmail.com>
Authored: Wed Sep 16 19:39:37 2015 +0300
Committer: Alex Antonenko <hi...@gmail.com>
Committed: Wed Sep 16 19:56:40 2015 +0300

----------------------------------------------------------------------
 ambari-web/app/views/common/quick_view_link_view.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/484e3610/ambari-web/app/views/common/quick_view_link_view.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/views/common/quick_view_link_view.js b/ambari-web/app/views/common/quick_view_link_view.js
index 500d6ec..8fe5d0c 100644
--- a/ambari-web/app/views/common/quick_view_link_view.js
+++ b/ambari-web/app/views/common/quick_view_link_view.js
@@ -162,7 +162,7 @@ App.QuickViewLinks = Em.View.extend({
         var quickLinks = [];
         self.get('content.quickLinks').forEach(function (item) {
           var newItem = {};
-          var protocol = self.setProtocol(item.get('service_id'), self.get('configProperties'), self.ambariProperties());
+          var protocol = self.setProtocol(item.get('service_id'), self.get('configProperties'), self.ambariProperties(), item);
           if (item.get('template')) {
             var port;
             var hostNameRegExp = new RegExp('([\\w\\W]*):\\d+');