Parcourir la source

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

aBabiichuk il y a 11 ans
Parent
commit
6c2447d0eb
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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'),