Skip to content

Commit

Permalink
fix wrong network interface name in gateway check (#2282)
Browse files Browse the repository at this point in the history
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
qiutingjun and dependabot[bot] authored Feb 3, 2023
1 parent 74a7da8 commit 3f0a500
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/daemon/ovs_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ func configureContainerNic(nicName, ifName string, ipAddr, gateway string, isDef
return err
}
}
if err := waitNetworkReady(ifName, ipAddr, u2oInterconnectionIP, false, true); err != nil {
if err := waitNetworkReady(nicName, ipAddr, u2oInterconnectionIP, false, true); err != nil {
return err
}
}
Expand Down

0 comments on commit 3f0a500

Please sign in to comment.