Skip to content

Commit 1d1f63d

Browse files
authored
Merge pull request moby#1951 from msabansal/savefail
Ignore failure to save hns endpoint to store
2 parents 506a924 + 8b40091 commit 1d1f63d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libnetwork/drivers/windows/windows.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,7 @@ func (d *driver) CreateEndpoint(nid, eid string, ifInfo driverapi.InterfaceInfo,
646646
}
647647

648648
if err = d.storeUpdate(endpoint); err != nil {
649-
return fmt.Errorf("failed to save endpoint %s to store: %v", endpoint.id[0:7], err)
649+
logrus.Errorf("Failed to save endpoint %s to store: %v", endpoint.id[0:7], err)
650650
}
651651

652652
return nil

0 commit comments

Comments
 (0)