Skip to content

Commit

Permalink
OCPBUGS-25687: Increase timeout for pod-network-service
Browse files Browse the repository at this point in the history
  • Loading branch information
mandre committed Dec 19, 2023
1 parent 4bf8001 commit c48eb27
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ func (pna *podNetworkAvalibility) StartCollection(ctx context.Context, adminREST
}

// we need to have the service network pollers wait until we have at least one healthy endpoint before starting.
err = wait.PollUntilContextTimeout(ctx, 1*time.Second, 60*time.Second, true, pna.serviceHasEndpoints)
err = wait.PollUntilContextTimeout(ctx, 1*time.Second, 120*time.Second, true, pna.serviceHasEndpoints)
if err != nil {
return err
}
Expand Down

0 comments on commit c48eb27

Please sign in to comment.