@@ -343,10 +343,10 @@ func endpointGroupCleanup(endpointGroup *contivModel.EndpointGroup) {
343
343
policy .Write ()
344
344
}
345
345
346
- // Cleanup any external contracts
346
+ // Cleanup any external contracts
347
347
err = extContracts .CleanupExternalContracts (endpointGroup )
348
348
if err != nil {
349
- return err
349
+ log . Errorf ( "Error cleaning up external contracts for epg %s" , endpointGroup . Key )
350
350
}
351
351
352
352
// Remove the endpoint group from network and tenant link sets.
@@ -397,12 +397,6 @@ func (ac *APIController) EndpointGroupCreate(endpointGroup *contivModel.Endpoint
397
397
return err
398
398
}
399
399
400
- // Setup external contracts this EPG might have.
401
- err = extContracts .SetupExternalContracts (endpointGroup , endpointGroup .ConsExtContractsGrps , endpointGroup .ProvExtContractsGrps )
402
- if err != nil {
403
- return err
404
- }
405
-
406
400
// for each policy create an epg policy Instance
407
401
for _ , policyName := range endpointGroup .Policies {
408
402
policyKey := endpointGroup .TenantName + ":" + policyName
@@ -434,6 +428,14 @@ func (ac *APIController) EndpointGroupCreate(endpointGroup *contivModel.Endpoint
434
428
}
435
429
}
436
430
431
+ // Setup external contracts this EPG might have.
432
+ err = extContracts .SetupExternalContracts (endpointGroup , endpointGroup .ConsExtContractsGrps , endpointGroup .ProvExtContractsGrps )
433
+ if err != nil {
434
+ log .Errorf ("Error setting up external contracts for epg %s" , endpointGroup .Key )
435
+ endpointGroupCleanup (endpointGroup )
436
+ return err
437
+ }
438
+
437
439
// Setup links
438
440
modeldb .AddLink (& endpointGroup .Links .Network , network )
439
441
modeldb .AddLink (& endpointGroup .Links .Tenant , tenant )
@@ -1194,7 +1196,7 @@ func (ac *APIController) ExtContractsGroupDelete(contractsGroup *contivModel.Ext
1194
1196
1195
1197
// At this moment, we let the external contracts to be deleted only
1196
1198
// if there are no consumers of this external contracts group
1197
- if isExtContractsGroupUsed (contractsGroup ) == true {
1199
+ if extContracts . IsExtContractsGroupUsed (contractsGroup ) == true {
1198
1200
log .Errorf ("Error: External contracts groups is being used: %s" , contractsGroup .ContractsGroupName )
1199
1201
return core .Errorf ("External contracts group is in-use" )
1200
1202
}
0 commit comments