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

Merge pull request #1951 from msabansal/savefail

Ignore failure to save hns endpoint to store
This commit is contained in:
Madhu Venugopal 2017-10-24 10:56:27 -07:00 committed by GitHub
commit 1d1f63d4fb

View file

@ -646,7 +646,7 @@ func (d *driver) CreateEndpoint(nid, eid string, ifInfo driverapi.InterfaceInfo,
}
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