Skip to content

Commit

Permalink
[e2e] Longer timeout for WaitAutoScaleNodes()
Browse files Browse the repository at this point in the history
Signed-off-by: Zhecheng Li <[email protected]>
  • Loading branch information
lzhecheng committed Mar 24, 2023
1 parent 3232c34 commit 391297d
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 391297d

Please sign in to comment.