1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Ignore failure to save hns endpoint to store

Signed-off-by: Sandeep Bansal <sabansal@microsoft.com>
This commit is contained in:
Sandeep Bansal 2017-09-21 23:11:17 -07:00
parent e621b9cd7a
commit 8b400916ce

View file

@ -639,7 +639,7 @@ func (d *driver) CreateEndpoint(nid, eid string, ifInfo driverapi.InterfaceInfo,
} }
if err = d.storeUpdate(endpoint); err != nil { if err = d.storeUpdate(endpoint); err != nil {
return fmt.Errorf("failed to save endpoint %s to store: %v", endpoint.id[0:7], err) logrus.Errorf("Failed to save endpoint %s to store: %v", endpoint.id[0:7], err)
} }
return nil return nil