Browse Source

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

aBabiichuk 11 years ago
parent
commit
6c2447d0eb
1 changed files with 1 additions and 1 deletions
  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'),
 
   isClientsOnly: function() {
-    var clientsOnly = ['SQOOP','PIG','TEZ'];
+    var clientsOnly = ['SQOOP','PIG','TEZ','HCATALOG'];
     return clientsOnly.contains(this.get('serviceName'));
   }.property('serviceName'),