Skip to content

Commit c9e9bce

Browse files
authored
YARN-11729. Broken 'AM Node Web UI' link on App details page (#7030)
1 parent 6881d12 commit c9e9bce

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/models/yarn-app-attempt.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ export default DS.Model.extend({
144144

145145
masterNodeURL: function() {
146146
var addr = encodeURIComponent(this.get("nodeHttpAddress"));
147-
return `#/yarn-node/${this.get("nodeId")}/${addr}/info/`;
147+
return `#/yarn-node/${this.get("nodeId")}/${addr}/info`;
148148
}.property("nodeId", "nodeHttpAddress"),
149149

150150
appAttemptContainerLogsURL: function() {

hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/models/yarn-container.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export default DS.Model.extend({
6565

6666
masterNodeURL: function() {
6767
var addr = encodeURIComponent(this.get("nodeHttpAddress"));
68-
return `#/yarn-node/${this.get("nodeId")}/${addr}/info/`;
68+
return `#/yarn-node/${this.get("nodeId")}/${addr}/info`;
6969
}.property("nodeId", "nodeHttpAddress"),
7070

7171
appAttemptContainerLogsURL: function() {

hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/models/yarn-timeline-appattempt.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,6 @@ export default DS.Model.extend({
143143

144144
masterNodeURL: function() {
145145
var addr = encodeURIComponent(this.get("nodeHttpAddress"));
146-
return `#/yarn-node/${this.get("nodeId")}/${addr}/info/`;
146+
return `#/yarn-node/${this.get("nodeId")}/${addr}/info`;
147147
}.property("nodeId", "nodeHttpAddress"),
148148
});

hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/models/yarn-timeline-container.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export default DS.Model.extend({
6666

6767
masterNodeURL: function() {
6868
var addr = encodeURIComponent(this.get("nodeHttpAddress"));
69-
return `#/yarn-node/${this.get("nodeId")}/${addr}/info/`;
69+
return `#/yarn-node/${this.get("nodeId")}/${addr}/info`;
7070
}.property("nodeId", "nodeHttpAddress"),
7171

7272
appAttemptContainerLogsURL: function() {

0 commit comments

Comments
 (0)