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 8ce0f65 commit c4dc8d0Copy full SHA for c4dc8d0
src/main/java/com/amazonaws/cloudformation/injection/CloudFormationProvider.java
@@ -34,10 +34,7 @@ public void setCallbackEndpoint(final URI callbackEndpoint) {
34
35
public CloudFormationClient get() {
36
return CloudFormationClient.builder().credentialsProvider(this.getCredentialsProvider())
37
- .endpointOverride(this.callbackEndpoint).overrideConfiguration(ClientOverrideConfiguration.builder()
38
- // Default Retry Condition of Retry Policy retries on Throttling and ClockSkew
39
- // Exceptions
40
- .retryPolicy(RetryPolicy.builder().numRetries(16).build()).build())
+ .endpointOverride(this.callbackEndpoint)
41
.build();
42
}
43
0 commit comments