Repository: ambari Updated Branches: refs/heads/branch-2.5 5287ab113 -> 1cd0d555d
AMBARI-19108 Perf: Web UI can't load json with host check info. (atkach) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/1cd0d555 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/1cd0d555 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/1cd0d555 Branch: refs/heads/branch-2.5 Commit: 1cd0d555dbad62bf36db44a9e7ddde24f2ad0560 Parents: 5287ab1 Author: Andrii Tkach <[email protected]> Authored: Wed Dec 7 12:40:48 2016 +0200 Committer: Andrii Tkach <[email protected]> Committed: Wed Dec 7 12:42:28 2016 +0200 ---------------------------------------------------------------------- ambari-web/app/controllers/wizard/step3_controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/1cd0d555/ambari-web/app/controllers/wizard/step3_controller.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/controllers/wizard/step3_controller.js b/ambari-web/app/controllers/wizard/step3_controller.js index 793d33d..45180fe 100644 --- a/ambari-web/app/controllers/wizard/step3_controller.js +++ b/ambari-web/app/controllers/wizard/step3_controller.js @@ -1081,7 +1081,7 @@ App.WizardStep3Controller = Em.Controller.extend(App.ReloadPopupMixin, { */ getHostCheckTasksSuccess: function (data) { if (!data) { - return; + return this.getGeneralHostCheck(); } if (["FAILED", "COMPLETED", "TIMEDOUT"].contains(data.Requests.request_status)) { if (data.Requests.inputs.indexOf("last_agent_env_check") != -1) {
