Skip to content

Commit

Permalink
Merge pull request #176 from cloudfoundry/increase_wait_time_for_scale
Browse files Browse the repository at this point in the history
Increase wait time for scale-out test to 10s
  • Loading branch information
jochenehret authored Jul 4, 2024
2 parents ac27622 + 891992d commit 551bf5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smoke/runtime/runtime_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ func ExpectAllAppInstancesToBeReachable(appURL string, instances int, maxAttempt
break
}

time.Sleep(time.Duration(5000/maxAttempts) * time.Millisecond)
time.Sleep(time.Duration(10000/maxAttempts) * time.Millisecond)
}

Expect(sawAll).To(BeTrue(), fmt.Sprintf("Expected to hit all %d app instances in %d attempts, but didn't", instances, maxAttempts))
Expand Down

0 comments on commit 551bf5e

Please sign in to comment.