Updated Branches: refs/heads/trunk 7b2f40ed7 -> e871c72f6
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/e871c72f Tree: http://git-wip-us.apache.org/repos/asf/incubator-ambari/tree/e871c72f Diff: http://git-wip-us.apache.org/repos/asf/incubator-ambari/diff/e871c72f Branch: refs/heads/trunk Commit: e871c72f6f68b82a7576e8f78d803a2e07b45978 Parents: 7b2f40e Author: Jaimin Jetly <[email protected]> Authored: Fri Jul 26 17:50:52 2013 -0700 Committer: Jaimin Jetly <[email protected]> Committed: Fri Jul 26 17:51:48 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/e871c72f/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 d17ea7c..d929498 100644 --- a/ambari-web/app/controllers/wizard/step3_controller.js +++ b/ambari-web/app/controllers/wizard/step3_controller.js @@ -775,7 +775,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);
