You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ab...@apache.org on 2013/12/20 19:12:29 UTC

git commit: AMBARI-4142 Incorrect names for service check operations on "Install, Start and Test" page. (ababiichuk)

Updated Branches:
  refs/heads/branch-1.4.3 e9d6eeb33 -> d5d39941f


AMBARI-4142 Incorrect names for service check operations on "Install, Start and Test" page. (ababiichuk)


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

Branch: refs/heads/branch-1.4.3
Commit: d5d39941fde1841118a8016dbfbaeab9b2969e1e
Parents: e9d6eeb
Author: aBabiichuk <ab...@cybervisiontech.com>
Authored: Fri Dec 20 20:06:41 2013 +0200
Committer: aBabiichuk <ab...@cybervisiontech.com>
Committed: Fri Dec 20 20:06:41 2013 +0200

----------------------------------------------------------------------
 ambari-web/app/views/wizard/step9_view.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/d5d39941/ambari-web/app/views/wizard/step9_view.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/views/wizard/step9_view.js b/ambari-web/app/views/wizard/step9_view.js
index 3221f74..4a9a395 100644
--- a/ambari-web/app/views/wizard/step9_view.js
+++ b/ambari-web/app/views/wizard/step9_view.js
@@ -214,7 +214,7 @@ App.HostStatusView = Em.View.extend({
               var taskInfo = Ember.Object.create({});
               taskInfo.set('id', _task.Tasks.id);
               taskInfo.set('requestId', _task.Tasks.request_id);
-              taskInfo.set('command', _task.Tasks.command.toLowerCase());
+              taskInfo.set('command', _task.Tasks.command.toLowerCase() === 'service_check' ? '' : _task.Tasks.command.toLowerCase());
               taskInfo.set('status', App.format.taskStatus(_task.Tasks.status));
               taskInfo.set('role', App.format.role(_task.Tasks.role));
               taskInfo.set('stderr', _task.Tasks.stderr);