You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're currently seeing service instances provisioned through the AWS service broker can take a long time to create and delete (in the order of 10-20 minutes). The CloudFoundryOperations in both 2.4.0.RELEASE and 2.5.0.BUILD-SNAPSHOT ultimately use code in the form of exponentialBackOff(Duration.ofSeconds(1), Duration.ofSeconds(15), Duration.ofMinutes(5)) (either in LastOperationUtils.waitForCompletion or JobUtils.waitForCompletion) to retry the operation.
Both of the following code snippets can fail with slow services, but these actually success in the sense that the service instance is created or deleted successfully (just long after the client has returned a failure response).