You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by je...@apache.org on 2014/01/06 23:22:52 UTC

git commit: updated refs/heads/master to 4528a0c

Updated Branches:
  refs/heads/master 6d0dbf596 -> 4528a0c0a


CLOUDSTACK-5808: UI > SystemVMs page > pass details=min to listHosts API to reduce response time.


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

Branch: refs/heads/master
Commit: 4528a0c0ae82d264482de99a00931de6655abb7e
Parents: 6d0dbf5
Author: Jessica Wang <je...@apache.org>
Authored: Mon Jan 6 14:21:09 2014 -0800
Committer: Jessica Wang <je...@apache.org>
Committed: Mon Jan 6 14:22:42 2014 -0800

----------------------------------------------------------------------
 ui/scripts/system.js | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/4528a0c0/ui/scripts/system.js
----------------------------------------------------------------------
diff --git a/ui/scripts/system.js b/ui/scripts/system.js
index 1313859..403fce0 100644
--- a/ui/scripts/system.js
+++ b/ui/scripts/system.js
@@ -7875,7 +7875,11 @@
                                             var systemvmObjs = json.listsystemvmsresponse.systemvm;
                                             if (systemvmObjs != undefined) {
                                                 $.ajax({
-                                                    url: createURL("listHosts&listAll=true"),
+                                                    url: createURL('listHosts'),
+                                                    data: {
+                                                        listAll: true,
+                                                        details: 'min'
+                                                    },
                                                     success: function(json) {
                                                         var hostObjs = json.listhostsresponse.host;
                                                         for (var i = 0; i < systemvmObjs.length; i++) {