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

This commit is contained in:
Rohith Sharma K S 2018-04-05 23:32:35 +05:30
parent f8b8bd53c4
commit f32d6275ba

View File

@ -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];