Skip to content

Commit

Permalink
Fixed linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
p-strusiewiczsurmacki-mobica committed Oct 9, 2023
1 parent 0473288 commit e60c302
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/anycast/anycast.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ func syncInterface(intf *netlink.Bridge, toolkit nl.ToolkitInterface, logger log
routingTable = link.(*netlink.Vrf).Table
}

syncInterfaceByFamily(intf, unix.AF_INET, routingTable, toolkit, logger)
syncInterfaceByFamily(intf, unix.AF_INET6, routingTable, toolkit, logger)
_ = syncInterfaceByFamily(intf, unix.AF_INET, routingTable, toolkit, logger)
_ = syncInterfaceByFamily(intf, unix.AF_INET6, routingTable, toolkit, logger)

return nil
}
Expand Down

0 comments on commit e60c302

Please sign in to comment.