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:52:16 UTC

git commit: updated refs/heads/master to a5503de

Updated Branches:
  refs/heads/master a49da6bee -> a5503de1d


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/a5503de1
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/a5503de1
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/a5503de1

Branch: refs/heads/master
Commit: a5503de1d1560edc18e66eabed89b754fbb21865
Parents: a49da6b
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:52:01 2013 -0700

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


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/a5503de1/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;