Repository: ambari Updated Branches: refs/heads/trunk 878dc6ac7 -> 87c4205c2
AMBARI-22001. Add service wizard stuck at step 8. (Jaimin) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/87c4205c Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/87c4205c Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/87c4205c Branch: refs/heads/trunk Commit: 87c4205c21489cfe8bab160fb82e3429c4fb832e Parents: 878dc6a Author: Jaimin Jetly <[email protected]> Authored: Tue Sep 19 19:18:48 2017 -0700 Committer: Jaimin Jetly <[email protected]> Committed: Tue Sep 19 19:18:48 2017 -0700 ---------------------------------------------------------------------- ambari-web/app/controllers/wizard/step8_controller.js | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/87c4205c/ambari-web/app/controllers/wizard/step8_controller.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/controllers/wizard/step8_controller.js b/ambari-web/app/controllers/wizard/step8_controller.js index b99c6e3..39981f7 100644 --- a/ambari-web/app/controllers/wizard/step8_controller.js +++ b/ambari-web/app/controllers/wizard/step8_controller.js @@ -1306,6 +1306,7 @@ App.WizardStep8Controller = Em.Controller.extend(App.AddSecurityConfigs, App.wiz if (this.get('content.slaveComponentHosts').someProperty('componentName', 'CLIENT')) { clientHosts = this.get('content.slaveComponentHosts').findProperty('componentName', 'CLIENT').hosts; } + var clients = this.get('content.clients').filterProperty('isInstalled', false); var clientsToMasterMap = this.getClientsMap('isMaster'); var clientsToClientMap = this.getClientsMap('isClient'); var installedClients = [];
