Browse Source

AMBARI-3286. Filter out the hosts that are already part of the cluster when showing the list of Other Registered Hosts. (onechiporenko)

Oleg Nechiporenko 11 năm trước cách đây
mục cha
commit
55c7e46e3d
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      ambari-web/app/controllers/wizard/step3_controller.js

+ 1 - 1
ambari-web/app/controllers/wizard/step3_controller.js

@@ -472,7 +472,7 @@ App.WizardStep3Controller = Em.Controller.extend({
 
   hostsInCluster: function() {
     return App.Host.find().getEach('hostName');
-  }.property().cacheable(),
+  }.property().volatile(),
 
   getAllRegisteredHostsCallback: function(hosts) {
     var registeredHosts = [];