Skip to content

Commit 589b428

Browse files
committed
Increase the timeout for broker to be enabled
Signed-off-by: João Pereira <[email protected]>
1 parent 8080a9d commit 589b428

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: integration/helpers/servicebrokerstub/app_deploy.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ var mutex sync.Mutex
2828
func ensureAppIsDeployed() {
2929
if !appResponds() {
3030
ensureAppIsPushed()
31-
Eventually(appResponds()).Should(BeTrue())
31+
Eventually(func() bool {
32+
return appResponds()
33+
}).WithTimeout(20 * time.Second).Should(BeTrue())
3234
}
3335
}
3436

0 commit comments

Comments
 (0)