Skip to content

Commit

Permalink
Extended wait for cluster size timeout.
Browse files Browse the repository at this point in the history
Extended wait for cluster size timeout in resize nodes e2e test to fix kubernetes#8715.
  • Loading branch information
jszczepkowski committed May 25, 2015
1 parent cf7b0bd commit 7d2fb16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/resize_nodes.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func waitForNodeInstanceGroupSize(size int) error {
}

func waitForClusterSize(c *client.Client, size int) error {
for start := time.Now(); time.Since(start) < 2*time.Minute; time.Sleep(20 * time.Second) {
for start := time.Now(); time.Since(start) < 4*time.Minute; time.Sleep(20 * time.Second) {
nodes, err := c.Nodes().List(labels.Everything(), fields.Everything())
if err != nil {
Logf("Failed to list nodes: %v", err)
Expand Down

0 comments on commit 7d2fb16

Please sign in to comment.