Explorar o código

AMBARI-10256. Unable to delete HBase Master (alexantonenko)

Alex Antonenko %!s(int64=10) %!d(string=hai) anos
pai
achega
62d6c1cb2b
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      ambari-web/app/models/stack_service_component.js

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

@@ -102,7 +102,7 @@ App.StackServiceComponent = DS.Model.extend({
 
   /** @property {Boolean} isDeletable - component supports delete action **/
   isDeletable: function() {
-    var ignored = ['HBASE_MASTER'];
+    var ignored = [];
     return this.get('isAddableToHost') && !ignored.contains(this.get('componentName'));
   }.property('componentName'),