Commit 972dcfaa authored by Jerzy Szczepkowski's avatar Jerzy Szczepkowski

Fixed flakiness of resize nodes test.

Fixed flakiness of resize nodes test by increasing timeout for waiting for change of size of managed instance group with nodes. Fixes #11442.
parent 6129d3d4
......@@ -104,7 +104,7 @@ func groupSize() (int, error) {
}
func waitForGroupSize(size int) error {
timeout := 4 * time.Minute
timeout := 10 * time.Minute
for start := time.Now(); time.Since(start) < timeout; time.Sleep(5 * time.Second) {
currentSize, err := groupSize()
if err != nil {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment