Explorar el Código

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

aBabiichuk hace 11 años
padre
commit
6c2447d0eb
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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'),