Skip to content

Commit

Permalink
Merge "Related-Bug: #1418951"
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed Feb 10, 2015
2 parents 2e57e72 + fe7f9b1 commit ed9708b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webroot/config/vn/api/vnconfig.vcenter.api.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ function ifNetworkExists(appData,projUUID,name,callback,retryCnt) {
if(retryCnt == null)
retryCnt = 0;
if(retryCnt == maxRetryCnt) {
return;
callback(false);
return;
}
retryCnt++;
var networkListURL = '/project/' + projUUID + '?exclude_children=True&exclude_back_refs=True';
var networkListURL = '/project/' + projUUID + '?exclude_back_refs=True';
configApiServer.apiGet(networkListURL,appData,function(err,data) {
var networkUUIDs = [],reqUrl = '';
if(data['project'] != null && data['project']['virtual_networks'] != null) {
Expand Down

0 comments on commit ed9708b

Please sign in to comment.