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 2013/07/29 22:53:13 UTC

git commit: updated refs/heads/4.2 to 8126981

Updated Branches:
  refs/heads/4.2 649d7d703 -> 8126981f8


CLOUDSTACK-2334: UI > Regions > GSLB > remove lb rule from GSLB - fix a bug that passed wrong parameter to API call.


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

Branch: refs/heads/4.2
Commit: 8126981f85aa89f862422811d7cf76f25bf17c96
Parents: 649d7d7
Author: Jessica Wang <je...@apache.org>
Authored: Mon Jul 29 13:50:16 2013 -0700
Committer: Jessica Wang <je...@apache.org>
Committed: Mon Jul 29 13:53:05 2013 -0700

----------------------------------------------------------------------
 ui/scripts/regions.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8126981f/ui/scripts/regions.js
----------------------------------------------------------------------
diff --git a/ui/scripts/regions.js b/ui/scripts/regions.js
index 11013dc..28f241c 100644
--- a/ui/scripts/regions.js
+++ b/ui/scripts/regions.js
@@ -908,7 +908,8 @@
                                     $.ajax({
                                         url: createURL('removeFromGlobalLoadBalancerRule'),
                                         data: {
-                                            id: args.context.lbUnderGSLB[0].id
+                                        	id: args.context.GSLB[0].id,
+                                        	loadbalancerrulelist: args.context.lbUnderGSLB[0].id
                                         },
                                         success: function(json) {
                                             var jid = json.removefromloadbalancerruleresponse.jobid;