Skip to content

Commit 3ca8579

Browse files
author
Vipin Jain
committed
epif_cleanup: remove UpdateContainerId API out of plugin interface
1 parent ef0608a commit 3ca8579

File tree

5 files changed

+0
-30
lines changed

5 files changed

+0
-30
lines changed

core/core.go

-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ type EndpointDriver interface {
8585
CreateEndpoint(id string) error
8686
DeleteEndpoint(value string) error
8787
MakeEndpointAddress() (*Address, error)
88-
UpdateContainerId(id string, contId string) error
8988
}
9089

9190
type StateDriver interface {

drivers/ovsdriver.go

-19
Original file line numberDiff line numberDiff line change
@@ -776,25 +776,6 @@ func (d *OvsDriver) DeleteEndpoint(value string) (err error) {
776776
return nil
777777
}
778778

779-
func (d *OvsDriver) UpdateContainerId(id string, contId string) error {
780-
var err error
781-
782-
operEpState := OvsOperEndpointState{StateDriver: d.stateDriver}
783-
err = operEpState.Read(id)
784-
if err != nil {
785-
return err
786-
}
787-
operEpState.ContId = contId
788-
err = operEpState.Write()
789-
if err != nil {
790-
return err
791-
}
792-
793-
log.Printf("updating ep %s with container id %s, contName was %s \n",
794-
id, contId, operEpState.ContName)
795-
return nil
796-
}
797-
798779
func (d *OvsDriver) MakeEndpointAddress() (*core.Address, error) {
799780
return nil, &core.Error{Desc: "Not supported"}
800781
}

drivers/ovsendpointstate.go

-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ type OvsOperEndpointState struct {
8686
Id string `json:"id"`
8787
NetId string `json:"netId"`
8888
ContName string `json:"contName"`
89-
ContId string `json:"contId"`
9089
IpAddress string `json:"ipAddress"`
9190
PortName string `json:"portName"`
9291
HomingHost string `json:"homingHost"`

netd.go

-5
Original file line numberDiff line numberDiff line change
@@ -343,11 +343,6 @@ func processEpEvent(netPlugin *plugin.NetPlugin, crt *crt.Crt,
343343
}
344344
contId := crt.ContainerIf.GetContainerId(contEpContext.NewContName)
345345
if contId != "" {
346-
err = netPlugin.UpdateContainerId(epId, contId)
347-
if err != nil {
348-
log.Printf("Cont id update err '%s' to ep '%s' - contid %s\n",
349-
contEpContext.NewContName, epId, contId)
350-
}
351346
}
352347
}
353348

plugin/netplugin.go

-4
Original file line numberDiff line numberDiff line change
@@ -189,10 +189,6 @@ func (p *NetPlugin) DeleteEndpoint(value string) error {
189189
return p.EndpointDriver.DeleteEndpoint(value)
190190
}
191191

192-
func (p *NetPlugin) UpdateContainerId(id string, contId string) error {
193-
return p.EndpointDriver.UpdateContainerId(id, contId)
194-
}
195-
196192
func (p *NetPlugin) FetchEndpoint(id string) (core.State, error) {
197193
return nil, &core.Error{Desc: "Not implemented"}
198194
}

0 commit comments

Comments
 (0)