Repository: chukwa Updated Branches: refs/heads/master 6e9e7899d -> d3fba3fac
CHUKWA-781. Redirect to login screen for invalid session. (Eric Yang) Project: http://git-wip-us.apache.org/repos/asf/chukwa/repo Commit: http://git-wip-us.apache.org/repos/asf/chukwa/commit/978656ad Tree: http://git-wip-us.apache.org/repos/asf/chukwa/tree/978656ad Diff: http://git-wip-us.apache.org/repos/asf/chukwa/diff/978656ad Branch: refs/heads/master Commit: 978656ad9429803e34e175191e050f5d6dc6ef1f Parents: 6e9e789 Author: Eric Yang <[email protected]> Authored: Mon Sep 14 20:03:51 2015 -0700 Committer: Eric Yang <[email protected]> Committed: Mon Sep 14 20:03:51 2015 -0700 ---------------------------------------------------------------------- CHANGES.txt | 2 ++ src/main/web/hicc/home/index.html | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/chukwa/blob/978656ad/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index ca6b303..cd5b75d 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -60,6 +60,8 @@ Trunk (unreleased changes) BUGS + CHUKWA-781. Redirect to login screen for invalid session. (Eric Yang) + CHUKWA-779. Remove support for JSP pages. (Eric Yang) CHUKWA-775. Updated Jersey version. (Eric Yang) http://git-wip-us.apache.org/repos/asf/chukwa/blob/978656ad/src/main/web/hicc/home/index.html ---------------------------------------------------------------------- diff --git a/src/main/web/hicc/home/index.html b/src/main/web/hicc/home/index.html index 112c2a1..b7ed0a1 100755 --- a/src/main/web/hicc/home/index.html +++ b/src/main/web/hicc/home/index.html @@ -270,7 +270,7 @@ $(function(){ //DOM Ready }).done(function( html ) { $('#username').append(html); }).fail(function() { - window.location = "/hicc/"; + window.location = "/hicc/v1/login/check"; }); $.getJSON('/hicc/v1/session/key/dashboard',
