Return-Path: X-Original-To: apmail-incubator-ambari-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-ambari-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 654C81031C for ; Sat, 27 Jul 2013 00:51:09 +0000 (UTC) Received: (qmail 10192 invoked by uid 500); 27 Jul 2013 00:51:09 -0000 Delivered-To: apmail-incubator-ambari-commits-archive@incubator.apache.org Received: (qmail 10171 invoked by uid 500); 27 Jul 2013 00:51:09 -0000 Mailing-List: contact ambari-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: ambari-dev@incubator.apache.org Delivered-To: mailing list ambari-commits@incubator.apache.org Received: (qmail 10164 invoked by uid 99); 27 Jul 2013 00:51:09 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 27 Jul 2013 00:51:09 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 1F58D9FA5; Sat, 27 Jul 2013 00:51:09 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jaimin@apache.org To: ambari-commits@incubator.apache.org Message-Id: <4bbeb6cd5b884f4a895d140cf6a16c15@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: AMBARI-2751: Hosts confirmation ends with warning "Service ntpd is not running on hosts", but it's running. (jaimin) Date: Sat, 27 Jul 2013 00:51:09 +0000 (UTC) Updated Branches: refs/heads/branch-1.2.5 7159f0798 -> 949047da2 AMBARI-2751: Hosts confirmation ends with warning "Service ntpd is not running on hosts", but it's running. (jaimin) Project: http://git-wip-us.apache.org/repos/asf/incubator-ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ambari/commit/949047da Tree: http://git-wip-us.apache.org/repos/asf/incubator-ambari/tree/949047da Diff: http://git-wip-us.apache.org/repos/asf/incubator-ambari/diff/949047da Branch: refs/heads/branch-1.2.5 Commit: 949047da228034919d7bbfcef75f61da9cbdb83b Parents: 7159f07 Author: Jaimin Jetly Authored: Fri Jul 26 17:50:52 2013 -0700 Committer: Jaimin Jetly Committed: Fri Jul 26 17:50:52 2013 -0700 ---------------------------------------------------------------------- ambari-web/app/controllers/wizard/step3_controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ambari/blob/949047da/ambari-web/app/controllers/wizard/step3_controller.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/controllers/wizard/step3_controller.js b/ambari-web/app/controllers/wizard/step3_controller.js index 9f4b68d..9e43fb3 100644 --- a/ambari-web/app/controllers/wizard/step3_controller.js +++ b/ambari-web/app/controllers/wizard/step3_controller.js @@ -776,7 +776,7 @@ App.WizardStep3Controller = Em.Controller.extend({ if (_host.Hosts.last_agent_env.hostHealth && _host.Hosts.last_agent_env.hostHealth.liveServices) { _host.Hosts.last_agent_env.hostHealth.liveServices.forEach(function (service) { - if (service.status === 'Healthy') { + if (service.status === 'Unhealthy') { warning = warnings.filterProperty('category', 'services').findProperty('name', service.name); if (warning) { warning.hosts.push(_host.Hosts.host_name);