|
@@ -208,9 +208,8 @@ App.MainServiceItemController = Em.Controller.extend({
|
|
confirmButton: Em.I18n.t('services.service.restartAll.confirmButton'),
|
|
confirmButton: Em.I18n.t('services.service.restartAll.confirmButton'),
|
|
additionalWarningMsg: this.get('content.passiveState') === 'OFF' ? Em.I18n.t('services.service.restartAll.warningMsg.turnOnMM').format(serviceDisplayName): null
|
|
additionalWarningMsg: this.get('content.passiveState') === 'OFF' ? Em.I18n.t('services.service.restartAll.warningMsg.turnOnMM').format(serviceDisplayName): null
|
|
});
|
|
});
|
|
- var staleConfigsOnly = App.Service.find(serviceName).get('serviceTypes').contains('MONITORING');
|
|
|
|
return App.showConfirmationFeedBackPopup(function(query, runMmOperation) {
|
|
return App.showConfirmationFeedBackPopup(function(query, runMmOperation) {
|
|
- batchUtils.restartAllServiceHostComponents(serviceName, staleConfigsOnly, query, runMmOperation);
|
|
|
|
|
|
+ batchUtils.restartAllServiceHostComponents(serviceName, false, query, runMmOperation);
|
|
}, bodyMessage);
|
|
}, bodyMessage);
|
|
},
|
|
},
|
|
|
|
|