Преглед на файлове

AMBARI-2585. Host Check report show hosts without issues. (Aleksandr Kovalenko via srimanth)

Srimanth Gunturi преди 12 години
родител
ревизия
be7f13762c
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      ambari-web/app/controllers/wizard/step3_controller.js

+ 1 - 1
ambari-web/app/controllers/wizard/step3_controller.js

@@ -1015,7 +1015,7 @@ App.WizardStep3Controller = Em.Controller.extend({
           var newContent = '';
           newContent += Em.I18n.t('installer.step3.hostWarningsPopup.report.header') + new Date;
           newContent += Em.I18n.t('installer.step3.hostWarningsPopup.report.hosts');
-          newContent += warningsByHost.mapProperty('name').join(' ');
+          newContent += warningsByHost.filterProperty('warnings.length').mapProperty('name').join(' ');
           if (content.findProperty('category', 'fileFolders').warnings.length) {
             newContent += Em.I18n.t('installer.step3.hostWarningsPopup.report.fileFolders');
             newContent += content.findProperty('category', 'fileFolders').warnings.mapProperty('name').join(' ') +  Em.I18n.t('installer.step3.hostWarningsPopup.report.folder');