You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ja...@apache.org on 2013/02/05 03:49:07 UTC

svn commit: r1442456 - in /incubator/ambari/trunk: CHANGES.txt ambari-web/app/controllers/wizard/step8_controller.js

Author: jaimin
Date: Tue Feb  5 02:49:07 2013
New Revision: 1442456

URL: http://svn.apache.org/viewvc?rev=1442456&view=rev
Log:
AMBARI-1342. Hive client is not installed on Nagios server host. (jaimin)

Modified:
    incubator/ambari/trunk/CHANGES.txt
    incubator/ambari/trunk/ambari-web/app/controllers/wizard/step8_controller.js

Modified: incubator/ambari/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1442456&r1=1442455&r2=1442456&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Tue Feb  5 02:49:07 2013
@@ -38,6 +38,9 @@ Trunk (unreleased changes):
 
  IMPROVEMENTS
 
+ AMBARI-1342. Hive client is not installed on Nagios server host.
+ (jaimin)
+
  AMBARI-1341. Add Hosts: update the API call for new operator precedence.
  (yusaku) 
 
@@ -1419,3 +1422,4 @@ AMBARI-666 branch:
   AMBARI-684. Remove non-required dependencies from pom files (hitesh via jitendra)
 
   AMBARI-680. Fix pom structure. (hitesh)
+

Modified: incubator/ambari/trunk/ambari-web/app/controllers/wizard/step8_controller.js
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/controllers/wizard/step8_controller.js?rev=1442456&r1=1442455&r2=1442456&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/controllers/wizard/step8_controller.js (original)
+++ incubator/ambari/trunk/ambari-web/app/controllers/wizard/step8_controller.js Tue Feb  5 02:49:07 2013
@@ -1059,6 +1059,14 @@ App.WizardStep8Controller = Em.Controlle
                   hostNames.pushObject(_masterHost.hostName);
                 }, this);
                 break;
+
+              case 'HIVE_CLIENT':
+                //install HIVE client on NAGIOS_SERVER host
+                masterHosts.filterProperty('component', 'NAGIOS_SERVER').filterProperty('isInstalled', false).forEach(function (_masterHost) {
+                  hostNames.pushObject(_masterHost.hostName);
+                }, this);
+                break;
+
               case 'HCAT':
                 // install HCAT (client) on NAGIOS_SERVER host
                 masterHosts.filterProperty('component', 'NAGIOS_SERVER').filterProperty('isInstalled', false).forEach(function (_masterHost) {