You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by at...@apache.org on 2014/07/02 14:09:19 UTC

git commit: AMBARI-6351 Remove synchronous calls with commands to server, second patch. (Max Shepel via atkach)

Repository: ambari
Updated Branches:
  refs/heads/trunk 087e00b4a -> 9ed0b549b


AMBARI-6351 Remove synchronous calls with commands to server, second patch. (Max Shepel via atkach)


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

Branch: refs/heads/trunk
Commit: 9ed0b549b7d25a9da2dae093d6656c6212430ff8
Parents: 087e00b
Author: atkach <at...@hortonworks.com>
Authored: Wed Jul 2 15:05:12 2014 +0300
Committer: atkach <at...@hortonworks.com>
Committed: Wed Jul 2 15:05:12 2014 +0300

----------------------------------------------------------------------
 ambari-web/app/controllers/wizard/step9_controller.js | 2 +-
 ambari-web/app/utils/ajax/ajax.js                     | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/9ed0b549/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 c966e53..b12eef0 100644
--- a/ambari-web/app/controllers/wizard/step9_controller.js
+++ b/ambari-web/app/controllers/wizard/step9_controller.js
@@ -813,7 +813,7 @@ App.WizardStep9Controller = Em.Controller.extend({
       this.saveInstalledHosts(this);
       return true;
     }
-    return false;
+    this.changeParseHostInfo(false);
   },
 
   /**

http://git-wip-us.apache.org/repos/asf/ambari/blob/9ed0b549/ambari-web/app/utils/ajax/ajax.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/utils/ajax/ajax.js b/ambari-web/app/utils/ajax/ajax.js
index b3117a9..1439454 100644
--- a/ambari-web/app/utils/ajax/ajax.js
+++ b/ambari-web/app/utils/ajax/ajax.js
@@ -1248,7 +1248,6 @@ var urls = {
     'format': function (data) {
       return {
         type: 'PUT',
-        async: false,
         data: data.data
       };
     }