Skip to content

Commit

Permalink
fix ci issues
Browse files Browse the repository at this point in the history
Signed-off-by: denis-tingaikin <[email protected]>
  • Loading branch information
denis-tingaikin committed Jul 1, 2024
1 parent 1a5167f commit 1586d37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/networkservice/mechanisms/kernel/kernelvethpair/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ func create(ctx context.Context, conn *networkservice.Connection, isClient bool)

// Create the veth pair
la := netlink.NewLinkAttrs()
la.Name, err = nanoid.GenerateLinuxInterfaceName()
la.Name, err = nanoid.GenerateLinuxInterfaceName(conn.GetNetworkService())
if err != nil {
return err
}
peerName, err := nanoid.GenerateLinuxInterfaceName()
peerName, err := nanoid.GenerateLinuxInterfaceName(conn.GetNetworkService())
if err != nil {
return err
}
Expand Down

0 comments on commit 1586d37

Please sign in to comment.