You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by on...@apache.org on 2014/02/25 12:11:32 UTC

git commit: AMBARI-4815. Adding Falcon post installation causes an error if Oozie is already installed. (onechiporenko)

Repository: ambari
Updated Branches:
  refs/heads/trunk 4a0a7d03b -> 5be623515


AMBARI-4815. Adding Falcon post installation causes an error if Oozie is already installed. (onechiporenko)


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

Branch: refs/heads/trunk
Commit: 5be623515893830d7f995b0662ae5a98e1bf40cd
Parents: 4a0a7d0
Author: Oleg Nechiporenko <on...@apache.org>
Authored: Tue Feb 25 13:08:47 2014 +0200
Committer: Oleg Nechiporenko <on...@apache.org>
Committed: Tue Feb 25 13:08:47 2014 +0200

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


http://git-wip-us.apache.org/repos/asf/ambari/blob/5be62351/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 419058b..4740913 100644
--- a/ambari-web/app/controllers/wizard/step8_controller.js
+++ b/ambari-web/app/controllers/wizard/step8_controller.js
@@ -1436,7 +1436,7 @@ App.WizardStep8Controller = Em.Controller.extend({
     configs.forEach(function (_configProperty) {
       falconProperties[_configProperty.name] = App.config.escapeXMLCharacters(_configProperty.value);
     }, this);
-    return {type: 'oozie-site', tag: 'version1', properties: falconProperties};
+    return {type: 'oozie-site', tag: 'version' + (new Date()).getTime(), properties: falconProperties};
   },
 
   ajaxQueueFinished: function () {