We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8080a9d commit 589b428Copy full SHA for 589b428
integration/helpers/servicebrokerstub/app_deploy.go
@@ -28,7 +28,9 @@ var mutex sync.Mutex
28
func ensureAppIsDeployed() {
29
if !appResponds() {
30
ensureAppIsPushed()
31
- Eventually(appResponds()).Should(BeTrue())
+ Eventually(func() bool {
32
+ return appResponds()
33
+ }).WithTimeout(20 * time.Second).Should(BeTrue())
34
}
35
36
0 commit comments