瀏覽代碼

AMBARI-2751: Hosts confirmation ends with warning "Service ntpd is not running on hosts", but it's running. (jaimin)

Jaimin Jetly 12 年之前
父節點
當前提交
e871c72f6f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      ambari-web/app/controllers/wizard/step3_controller.js

+ 1 - 1
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);