Browse Source

YARN-8119. [UI2] Timeline Server address' url scheme should be removed while accessing via KNOX. Contributed by Sunil G.

(cherry picked from commit f32d6275ba9e377fb722e2440986033d7ce8b602)
Rohith Sharma K S 7 năm trước cách đây
mục cha
commit
b11c228660

+ 2 - 0
hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/initializers/loader.js

@@ -61,6 +61,7 @@ function updateConfigs(application) {
       url: getTimeLineURL(rmhost),
       success: function(data) {
         timelinehost = data.property.value;
+        timelinehost = timelinehost.replace(/(^\w+:|^)\/\//, '');
         ENV.hosts.timelineWebAddress = timelinehost;
 
         var address = timelinehost.split(":")[0];
@@ -94,6 +95,7 @@ function updateConfigs(application) {
       url: getTimeLineV1URL(rmhost),
       success: function(data) {
         timelinehost = data.property.value;
+        timelinehost = timelinehost.replace(/(^\w+:|^)\/\//, '');
         ENV.hosts.timelineV1WebAddress = timelinehost;
 
         var address = timelinehost.split(":")[0];