Skip to content

Commit 04c60f9

Browse files
authored
Update bridge.go
1 parent cc9c97c commit 04c60f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/bridge/bridge.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1030,7 +1030,7 @@ func (d *driver) CreateEndpoint(nid, eid string, ifInfo driverapi.InterfaceInfo,
10301030
if config.NDPProxyInterface != "" && config.EnableIPv6 {
10311031
link, err := d.nlh.LinkByName(config.NDPProxyInterface)
10321032
if err != nil {
1033-
return err
1033+
return fmt.Errorf("could not find link for ndp proxy interface %q: %v", config.NDPProxyInterface, err)
10341034
}
10351035
neighbor := netlink.Neigh{
10361036
LinkIndex: link.Attrs().Index,

0 commit comments

Comments
 (0)