Return-Path: X-Original-To: apmail-cloudstack-commits-archive@www.apache.org Delivered-To: apmail-cloudstack-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id CCDE4105DE for ; Tue, 25 Jun 2013 23:47:09 +0000 (UTC) Received: (qmail 48550 invoked by uid 500); 25 Jun 2013 23:47:09 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 48519 invoked by uid 500); 25 Jun 2013 23:47:09 -0000 Mailing-List: contact commits-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list commits@cloudstack.apache.org Received: (qmail 48512 invoked by uid 99); 25 Jun 2013 23:47:09 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 25 Jun 2013 23:47:09 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 79AF31C7EB; Tue, 25 Jun 2013 23:47:09 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jessicawang@apache.org To: commits@cloudstack.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: updated refs/heads/master-6-17-stable to 85e5513 Date: Tue, 25 Jun 2013 23:47:09 +0000 (UTC) Updated Branches: refs/heads/master-6-17-stable 40bc81c36 -> 85e55136c CLOUDSTACK-3121: UI > VPC dashboard - fix a bug that showed wrong count number of private gateways. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/85e55136 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/85e55136 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/85e55136 Branch: refs/heads/master-6-17-stable Commit: 85e55136c3a9ff6c9ac5fefe6f05044bd8175334 Parents: 40bc81c Author: Jessica Wang Authored: Tue Jun 25 16:44:37 2013 -0700 Committer: Jessica Wang Committed: Tue Jun 25 16:46:46 2013 -0700 ---------------------------------------------------------------------- ui/scripts/vpc.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/85e55136/ui/scripts/vpc.js ---------------------------------------------------------------------- diff --git a/ui/scripts/vpc.js b/ui/scripts/vpc.js index f610889..310fbb6 100644 --- a/ui/scripts/vpc.js +++ b/ui/scripts/vpc.js @@ -3453,7 +3453,10 @@ $.ajax({ url: createURL('listPrivateGateways'), async: false, - data: { 'vpcid': args.context.vpc[0].id }, + data: { + 'vpcid': args.context.vpc[0].id, + listAll: true + }, success: function(json) { privateGateways = json.listprivategatewaysresponse; },