You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by yu...@apache.org on 2013/02/20 23:51:22 UTC

svn commit: r1448456 - in /incubator/ambari/trunk: CHANGES.txt ambari-web/app/router.js

Author: yusaku
Date: Wed Feb 20 22:51:22 2013
New Revision: 1448456

URL: http://svn.apache.org/r1448456
Log:
AMBARI-1455. Setting App.testMode=true, alwaysGoToInstaller=true does not render the Dashboard properly upon login. (yusaku)

Modified:
    incubator/ambari/trunk/CHANGES.txt
    incubator/ambari/trunk/ambari-web/app/router.js

Modified: incubator/ambari/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1448456&r1=1448455&r2=1448456&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Wed Feb 20 22:51:22 2013
@@ -315,6 +315,9 @@ Trunk (unreleased changes):
 
  BUG FIXES
 
+ AMBARI-1455. Setting App.testMode=true, alwaysGoToInstaller=true does not
+ render the Dashboard properly upon login. (yusaku)
+
  AMBARI-1452. Graphs look broken when network connectivity is lost between
  Ambari Web and Ambari Server. (yusaku)
 

Modified: incubator/ambari/trunk/ambari-web/app/router.js
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/router.js?rev=1448456&r1=1448455&r2=1448456&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/router.js (original)
+++ incubator/ambari/trunk/ambari-web/app/router.js Wed Feb 20 22:51:22 2013
@@ -251,7 +251,7 @@ App.Router = Em.Router.extend({
       if (App.alwaysGoToInstaller) {
         return 'installer';
       } else {
-        return 'main';
+        return 'main.index';
       }
     }
     App.clusterStatus.updateFromServer();