mirror of https://github.com/apache/cloudstack.git
bug CS-14419
Add error handling for delete security group action status CS-14419: resolved fixed
This commit is contained in:
parent
cd9c24a978
commit
bd58de20fc
|
|
@ -2673,6 +2673,9 @@
|
|||
poll: pollAsyncJobResult
|
||||
}
|
||||
});
|
||||
},
|
||||
error: function(json) {
|
||||
args.response.error(parseXMLHttpResponse(json));
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
@ -2908,6 +2911,9 @@
|
|||
async: true,
|
||||
success: function(data) {
|
||||
args.response.success();
|
||||
},
|
||||
error: function(json) {
|
||||
args.response.error(parseXMLHttpResponse(json));
|
||||
}
|
||||
});
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue