AMBARI-21807. 'Move Hive Metastore' wizard is stuck while configuring MYSQL_SERVER. (jaimin)
(cherry picked from commit 15c6f5a3ce8b10da25c383edd99455793fbdd25b) Change-Id: Ie47344fa6acb8e20a1f5bf2cc41cebfba68a804b Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/2453e164 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/2453e164 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/2453e164 Branch: refs/heads/2.5-maint Commit: 2453e16418fd964042452b649153dbe45f3c6009 Parents: 99269b1 Author: Jaimin Jetly <[email protected]> Authored: Tue Aug 29 20:20:20 2017 -0700 Committer: [email protected] <[email protected]> Committed: Wed Aug 30 03:31:27 2017 +0000 ---------------------------------------------------------------------- .../controllers/main/service/reassign/step1_controller_test.js | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/2453e164/ambari-web/test/controllers/main/service/reassign/step1_controller_test.js ---------------------------------------------------------------------- diff --git a/ambari-web/test/controllers/main/service/reassign/step1_controller_test.js b/ambari-web/test/controllers/main/service/reassign/step1_controller_test.js index 7dbf24a..0a75903 100644 --- a/ambari-web/test/controllers/main/service/reassign/step1_controller_test.js +++ b/ambari-web/test/controllers/main/service/reassign/step1_controller_test.js @@ -109,6 +109,7 @@ describe('App.ReassignMasterWizardStep1Controller', function () { controller.set('_super', Em.K); sinon.stub(controller, 'getDatabaseHost', Em.K); + sinon.stub(controller, 'isExistingDb', Em.K); sinon.stub(controller, 'saveDatabaseType', Em.K); sinon.stub(controller, 'saveServiceProperties', Em.K); sinon.stub(controller, 'saveConfigs', Em.K); @@ -119,6 +120,7 @@ describe('App.ReassignMasterWizardStep1Controller', function () { afterEach(function() { controller.getDatabaseHost.restore(); + controller.isExistingDb.restore(); controller.saveDatabaseType.restore(); controller.saveServiceProperties.restore(); controller.saveConfigs.restore();
