You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by xi...@apache.org on 2014/05/21 23:34:09 UTC

git commit: AMBARI-5848. Install Wizard > Deploy: task level start time and duration not updated correctly.(xiwang)

Repository: ambari
Updated Branches:
  refs/heads/trunk e2de8bd1a -> 71da26d27


AMBARI-5848. Install Wizard > Deploy: task level start time and duration not updated correctly.(xiwang)


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/71da26d2
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/71da26d2
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/71da26d2

Branch: refs/heads/trunk
Commit: 71da26d27ab32619515b569acb9005b251e809b3
Parents: e2de8bd
Author: Xi Wang <xi...@apache.org>
Authored: Wed May 21 11:18:06 2014 -0700
Committer: Xi Wang <xi...@apache.org>
Committed: Wed May 21 14:33:36 2014 -0700

----------------------------------------------------------------------
 ambari-web/app/controllers/wizard/step9_controller.js | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/71da26d2/ambari-web/app/controllers/wizard/step9_controller.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/controllers/wizard/step9_controller.js b/ambari-web/app/controllers/wizard/step9_controller.js
index 5a17326..4228f2f 100644
--- a/ambari-web/app/controllers/wizard/step9_controller.js
+++ b/ambari-web/app/controllers/wizard/step9_controller.js
@@ -833,6 +833,8 @@ App.WizardStep9Controller = Em.Controller.extend({
       var task = host.logTasks.findProperty('Tasks.id', _task.Tasks.id);
       if (task) {
         task.Tasks.status = _task.Tasks.status;
+        task.Tasks.start_time = _task.Tasks.start_time;
+        task.Tasks.end_time = _task.Tasks.end_time;
         task.Tasks.exit_code = _task.Tasks.exit_code;
       } else {
         host.logTasks.pushObject(_task);