You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by sr...@apache.org on 2013/04/10 00:24:54 UTC

svn commit: r1466268 - in /incubator/ambari/trunk: CHANGES.txt ambari-web/app/utils/config.js

Author: srimanth
Date: Tue Apr  9 22:24:54 2013
New Revision: 1466268

URL: http://svn.apache.org/r1466268
Log:
AMBARI-1852. Upon clicking Services > Service > Config, a call to "configurations resource is made and the server throws 400. (srimanth)

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

Modified: incubator/ambari/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1466268&r1=1466267&r2=1466268&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Tue Apr  9 22:24:54 2013
@@ -670,6 +670,9 @@ Trunk (unreleased changes):
 
  BUG FIXES
 
+ AMBARI-1852. Upon clicking Services > Service > Config, a call to 
+ "configurations resource is made and the server throws 400. (srimanth)
+
  AMBARI-1851. Ambari Web behaves strangely when there is no Active HBase 
  Master. (srimanth)
 

Modified: incubator/ambari/trunk/ambari-web/app/utils/config.js
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/utils/config.js?rev=1466268&r1=1466267&r2=1466268&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/utils/config.js (original)
+++ incubator/ambari/trunk/ambari-web/app/utils/config.js Tue Apr  9 22:24:54 2013
@@ -584,7 +584,7 @@ App.config = Em.Object.create({
       }
     }
     var params = urlParams.join('|');
-    if(urlParams.length || 1){
+    if(urlParams.length){
       App.ajax.send({
         name: 'config.host_overrides',
         sender: this,