Skip to content

Commit 319ae51

Browse files
g1ranaunclejack
authored andcommitted
fix for IPAM leak issue
1 parent 53da09d commit 319ae51

File tree

4 files changed

+21
-2
lines changed

4 files changed

+21
-2
lines changed

mgmtfn/dockplugin/ipamDriver.go

100755100644
+13
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,19 @@ func releaseAddress(w http.ResponseWriter, r *http.Request) {
288288

289289
log.Infof("Received ReleaseAddressRequest: %+v", areq)
290290

291+
//Build an release request to be sent to master
292+
releaseReq := master.AddressReleaseRequest{
293+
NetworkID: areq.PoolID,
294+
IPv4Address: areq.Address,
295+
}
296+
var releaseResp master.AddressReleaseResponse
297+
err := cluster.MasterPostReq("/plugin/releaseAddress",
298+
&releaseReq, &releaseRsp)
299+
if err != nil {
300+
httpError(w, "master failed to release request:%v address",
301+
releaseReq, err)
302+
return
303+
}
291304
// response
292305
relResp := api.ReleaseAddressResponse{}
293306

mgmtfn/dockplugin/netDriver.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ func createEndpoint(hostname string) func(http.ResponseWriter, *http.Request) {
189189
return
190190
}
191191

192-
log.Infof("CreateEndpointRequest: %+v. Interface: %+v", cereq, cereq.Interface)
192+
//log.Infof("CreateEndpointRequest: %+v. Interface: %+v", cereq, cereq.Interface)
193193

194194
tenantName, netName, serviceName, err := GetDockerNetworkName(cereq.NetworkID)
195195
if err != nil {
@@ -213,6 +213,8 @@ func createEndpoint(hostname string) func(http.ResponseWriter, *http.Request) {
213213
},
214214
}
215215

216+
log.Infof("CreateEndpointRequest: %+v. Interface: %+v", mreq, cereq.Interface)
217+
216218
var mresp master.CreateEndpointResponse
217219
err = cluster.MasterPostReq("/plugin/createEndpoint", &mreq, &mresp)
218220
if err != nil {

netmaster/master/api.go

100755100644
+3
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ type AddressReleaseRequest struct {
4949
NetworkID string // Unique identifier for the network
5050
IPv4Address string // Allocated address
5151
}
52+
type AddressReleaseResponse struct {
53+
Status string
54+
}
5255

5356
// CreateEndpointRequest has the endpoint create request from netplugin
5457
type CreateEndpointRequest struct {

netplugin/cluster/cluster.go

100755100644
+2-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ func masterReq(path string, req interface{}, resp interface{}, isDel bool) error
123123
time.Sleep(time.Second)
124124
continue
125125
} else if err != nil {
126-
log.Errorf("Error making %s request: Err: %v", reqType, err)
126+
log.Errorf("Error making %s request: Err: %v"+
127+
"with resp:%+v", reqType, err, resp)
127128
return err
128129
}
129130

0 commit comments

Comments
 (0)