Skip to content

Commit 6efd1ef

Browse files
author
jojimt
committed
Merge pull request #373 from shaleman/dockermac
fix interop issue with docker 1.11
2 parents 7a06f02 + 4ca583b commit 6efd1ef

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

mgmtfn/dockplugin/ipamDriver.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import (
3131
func getIpamCapability(w http.ResponseWriter, r *http.Request) {
3232
logEvent("getIpamCapability")
3333

34-
content, err := json.Marshal(api.GetCapabilityResponse{RequiresMACAddress: true})
34+
content, err := json.Marshal(api.GetCapabilityResponse{})
3535
if err != nil {
3636
httpError(w, "Could not generate getCapability response", err)
3737
return

mgmtfn/dockplugin/netDriver.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,9 @@ func createEndpoint(hostname string) func(http.ResponseWriter, *http.Request) {
240240
log.Debug(ep)
241241

242242
epResponse := api.CreateEndpointResponse{
243-
Interface: &api.EndpointInterface{},
243+
Interface: &api.EndpointInterface{
244+
MacAddress: mresp.EndpointConfig.MacAddress,
245+
},
244246
}
245247

246248
// Add the service information using Service plugin

0 commit comments

Comments
 (0)