浏览代码

AMBARI-6244. Restart icon is present after Service Actions->Restart all button click.(xiwang)

Xi Wang 11 年之前
父节点
当前提交
095d47840e
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      ambari-web/app/utils/batch_scheduled_requests.js

+ 2 - 2
ambari-web/app/utils/batch_scheduled_requests.js

@@ -76,7 +76,7 @@ module.exports = {
 
     this.getComponentsFromServer({
       services: services,
-      staleConfigs: staleConfigsOnly,
+      staleConfigs: staleConfigsOnly ? staleConfigsOnly : null,
       passiveState: 'OFF',
       displayParams: ['host_components/HostRoles/component_name']
     }, function (data) {
@@ -389,7 +389,7 @@ module.exports = {
           self.getComponentsFromServer({
             components: [hostComponentName],
             displayParams: ['host_components/HostRoles/stale_configs', 'Hosts/maintenance_state', 'host_components/HostRoles/maintenance_state'],
-            staleConfigs: staleConfigsOnly
+            staleConfigs: staleConfigsOnly ? staleConfigsOnly : null
           }, function (data) {
             var wrappedHostComponents = [];
             data.items.forEach(function (host) {