Repository: hadoop Updated Branches: refs/heads/branch-3.1 8d3598525 -> d0452370c
YARN-8266. [UI2] Clicking on application from cluster view should redirect to application attempt page. Contributed by Yesha Vora. (cherry picked from commit 796b2b0ee36e8e9225fb76ae35edc58ad907b737) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/d0452370 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/d0452370 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/d0452370 Branch: refs/heads/branch-3.1 Commit: d0452370ccc15b77a8298728e4838a91f0156e2e Parents: 8d35985 Author: Sunil G <[email protected]> Authored: Tue May 15 12:01:28 2018 +0530 Committer: Sunil G <[email protected]> Committed: Tue May 15 12:02:40 2018 +0530 ---------------------------------------------------------------------- .../hadoop-yarn-ui/src/main/webapp/app/utils/href-address-utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/d0452370/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/utils/href-address-utils.js ---------------------------------------------------------------------- diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/utils/href-address-utils.js b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/utils/href-address-utils.js index 896d448..fcf6a1e 100644 --- a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/utils/href-address-utils.js +++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/utils/href-address-utils.js @@ -18,7 +18,7 @@ export default { getApplicationLink: function(applicationId) { - return "#/yarn-app/" + applicationId; + return "#/yarn-app/" + applicationId + '/attempts'; }, getQueueLink: function(queueName) { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
