mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-564: cloudstack UI - EIP/ELB Basic Zone - Network menu - Guest Network section - network detailView - Add Load Balancer tab - use jobid from assignToLoadBalancerRule instead of createLoadBalancerRule.
This commit is contained in:
parent
e4a5173199
commit
6d8cd9f5c0
|
|
@ -1321,7 +1321,7 @@
|
|||
async: true,
|
||||
success: function(data) {
|
||||
var itemData = args.itemData;
|
||||
var jobID = data.createloadbalancerruleresponse.jobid;
|
||||
//var jobID = data.createloadbalancerruleresponse.jobid; //CS-16964: use jobid from assignToLoadBalancerRule instead of createLoadBalancerRule
|
||||
|
||||
$.ajax({
|
||||
url: createURL('assignToLoadBalancerRule'),
|
||||
|
|
@ -1334,7 +1334,8 @@
|
|||
dataType: 'json',
|
||||
async: true,
|
||||
success: function(data) {
|
||||
var lbCreationComplete = false;
|
||||
var jobID = data.assigntoloadbalancerruleresponse.jobid; //CS-16964: use jobid from assignToLoadBalancerRule instead of createLoadBalancerRule
|
||||
var lbCreationComplete = false;
|
||||
|
||||
args.response.success({
|
||||
_custom: {
|
||||
|
|
|
|||
Loading…
Reference in New Issue