YARN-9114. [UI2] log service redirect url need to support user name. Contributed by Akhil PB
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/5a03c8b9 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/5a03c8b9 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/5a03c8b9 Branch: refs/heads/HDFS-13891 Commit: 5a03c8b9baea0a058fe5d1bf08346dd4b3a336ee Parents: fb55e52 Author: Sunil G <[email protected]> Authored: Wed Dec 12 14:19:49 2018 +0530 Committer: Sunil G <[email protected]> Committed: Wed Dec 12 14:19:49 2018 +0530 ---------------------------------------------------------------------- .../hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/router.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/5a03c8b9/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/router.js ---------------------------------------------------------------------- diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/router.js b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/router.js index aa0e983..477bfc9 100644 --- a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/router.js +++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-ui/src/main/webapp/app/router.js @@ -52,7 +52,7 @@ Router.map(function() { this.route('yarn-container-log', { path: '/yarn-container-log/:node_id/:node_addr/:container_id/:filename' }); this.route('yarn-log-service', - { path: '/yarn-log-service/:cluster_id/:container_id/:filename' }); + { path: '/yarn-log-service/cluster/:cluster_id/container/:container_id/user/:user_name/filename/:filename' }); this.route('yarn-deploy-service'); this.route('cluster-overview'); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
