Browse Source

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

Alex Antonenko 10 years ago
parent
commit
62d6c1cb2b
1 changed files with 1 additions and 1 deletions
  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'),