Skip to content

Commit

Permalink
[Windows] Fix timeout value for EnableHostInterface (antrea-io#2081)
Browse files Browse the repository at this point in the history
The second parameter to wait.PollImmediate (the timeout) is a
time.Duration value. When using 5 as the parameter value, it is
interpreted as 5ns, and not 5s. This means that EnableHostInterface
basically never does any retry.
  • Loading branch information
antoninbas committed Apr 29, 2021
1 parent cc634bb commit a846acc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/agent/util/net_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ const (
LocalHNSNetwork = "antrea-hnsnetwork"
OVSExtensionID = "583CC151-73EC-4A6A-8B47-578297AD7623"
namedPipePrefix = `\\.\pipe\`
commandMaxRetry = 5
commandRetryInternal = time.Second
commandRetryTimeout = 5 * time.Second
commandRetryInterval = time.Second
)

func GetNSPath(containerNetNS string) (string, error) {
Expand All @@ -62,7 +62,7 @@ func EnableHostInterface(ifaceName string) error {
// Enable-NetAdapter is not a blocking operation based on our testing.
// It returns immediately no matter whether the interface has been enabled or not.
// So we need to check the interface status to ensure it is up before returning.
if err := wait.PollImmediate(commandRetryInternal, commandMaxRetry, func() (done bool, err error) {
if err := wait.PollImmediate(commandRetryInterval, commandRetryTimeout, func() (done bool, err error) {
if err := InvokePSCommand(cmd); err != nil {
klog.Errorf("Failed to run command %s: %v", cmd, err)
return false, nil
Expand Down

0 comments on commit a846acc

Please sign in to comment.