Skip to content

Commit

Permalink
Increase the timeout for broker to be enabled
Browse files Browse the repository at this point in the history
Signed-off-by: João Pereira <[email protected]>
  • Loading branch information
joaopapereira committed Aug 20, 2024
1 parent 8080a9d commit 589b428
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion integration/helpers/servicebrokerstub/app_deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ var mutex sync.Mutex
func ensureAppIsDeployed() {
if !appResponds() {
ensureAppIsPushed()
Eventually(appResponds()).Should(BeTrue())
Eventually(func() bool {
return appResponds()
}).WithTimeout(20 * time.Second).Should(BeTrue())
}
}

Expand Down

0 comments on commit 589b428

Please sign in to comment.