浏览代码

AMBARI-4916 'Start All' button is enabled if all services are started (reopen). (ababiichuk)

aBabiichuk 11 年之前
父节点
当前提交
6c2447d0eb
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      ambari-web/app/models/service.js

+ 1 - 1
ambari-web/app/models/service.js

@@ -61,7 +61,7 @@ App.Service = DS.Model.extend({
   }.property('workStatus'),
   }.property('workStatus'),
 
 
   isClientsOnly: function() {
   isClientsOnly: function() {
-    var clientsOnly = ['SQOOP','PIG','TEZ'];
+    var clientsOnly = ['SQOOP','PIG','TEZ','HCATALOG'];
     return clientsOnly.contains(this.get('serviceName'));
     return clientsOnly.contains(this.get('serviceName'));
   }.property('serviceName'),
   }.property('serviceName'),