Skip to content

Commit

Permalink
Merge pull request #3642 from lzhecheng/longer-timeout-autoscaler
Browse files Browse the repository at this point in the history
[e2e] Longer timeout for WaitAutoScaleNodes()
  • Loading branch information
lzhecheng authored Mar 24, 2023
2 parents 50993fd + 391297d commit 3cf1f0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/e2e/utils/node_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ func WaitAutoScaleNodes(cs clientset.Interface, targetNodeCount int, isScaleDown
var nodes []v1.Node
var err error
poll := 60 * time.Second
autoScaleTimeOut := 60 * time.Minute
autoScaleTimeOut := 90 * time.Minute
if err = wait.PollImmediate(poll, autoScaleTimeOut, func() (bool, error) {
nodes, err = GetAgentNodes(cs)
if err != nil {
Expand Down

0 comments on commit 3cf1f0d

Please sign in to comment.