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
fix(toolkit): CLI tool fails on CloudFormation Throttling
The CDK (particularly, `cdk deploy`) might crash after getting throttled
by CloudFormation, after the default configured 6 retries has been
reached.
This changes the retry configuration of the CloudFormation client (and
only that one) to use a custom backoff function that will allow up to
`100` retries to be made before failing (until it reaches an error that
is either not declared as retryable; or that is not a throttling error);
and will exponentially back-off (with a maximum wait time between two
attempts of 1 minute).
This should allow heavily parallel deployments on the same account and
region to avoid getting killed by a throttle; but will reduce the
responsiveness of the progress UI.
Fixes#5637
0 commit comments