Skip to content

Commit 4344e0b

Browse files
author
Satish Ramachandran
committed
Have a single linkset for external contracts.
1 parent e0abc62 commit 4344e0b

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

netmaster/objApi/extContracts.go

+3-10
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,8 @@ func extContractsGrpDeregister(epg *contivModel.EndpointGroup,
3636
}
3737

3838
modeldb.RemoveLinkSet(&contractsGrp.LinkSets.EndpointGroups, epg)
39-
if contractType == "provided" {
40-
modeldb.RemoveLinkSet(&epg.LinkSets.ProvExtContractsGrps, contractsGrp)
41-
} else if contractType == "consumed" {
42-
modeldb.RemoveLinkSet(&epg.LinkSets.ConsExtContractsGrps, contractsGrp)
43-
}
39+
modeldb.RemoveLinkSet(&epg.LinkSets.ExtContractsGrps, contractsGrp)
40+
4441
// Links broken, update the contracts group object.
4542
err := contractsGrp.Write()
4643
if err != nil {
@@ -70,11 +67,7 @@ func extContractsGrpValidateAndRegister(epg *contivModel.EndpointGroup,
7067

7168
// Establish the necessary links.
7269
modeldb.AddLinkSet(&contractsGrp.LinkSets.EndpointGroups, epg)
73-
if contractType == "provided" {
74-
modeldb.AddLinkSet(&epg.LinkSets.ProvExtContractsGrps, contractsGrp)
75-
} else if contractType == "consumed" {
76-
modeldb.AddLinkSet(&epg.LinkSets.ConsExtContractsGrps, contractsGrp)
77-
}
70+
modeldb.AddLinkSet(&epg.LinkSets.ExtContractsGrps, contractsGrp)
7871

7972
// Links made, write the policy set object.
8073
err := contractsGrp.Write()

0 commit comments

Comments
 (0)