Skip to content

Commit

Permalink
Merge pull request kubernetes#8775 from jszczepkowski/e2e-nodes
Browse files Browse the repository at this point in the history
Extended wait for cluster size timeout.
  • Loading branch information
Marek Grabowski committed May 25, 2015
2 parents f5a3f7d + 7d2fb16 commit 5a1324d
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 5a1324d

Please sign in to comment.