Skip to content

Commit

Permalink
Doc correction - retryOnServiceExceptions was updated in:
Browse files Browse the repository at this point in the history
  aws#26474

to include retry handling for `Lambda.ClientExecutionTimeoutException`, as well.
  • Loading branch information
schmiddy committed May 6, 2024
1 parent 8e98078 commit 2cfbae9
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,9 @@ export interface LambdaInvokeProps extends sfn.TaskStateBaseProps {
/**
* Whether to retry on Lambda service exceptions.
*
* This handles `Lambda.ServiceException`, `Lambda.AWSLambdaException` and
* `Lambda.SdkClientException` with an interval of 2 seconds, a back-off rate
* This handles `Lambda.ServiceException`, `Lambda.AWSLambdaException`,
* `Lambda.SdkClientException`, and `Lambda.ClientExecutionTimeoutException`
* with an interval of 2 seconds, a back-off rate
* of 2 and 6 maximum attempts.
*
* @see https://docs.aws.amazon.com/step-functions/latest/dg/bp-lambda-serviceexception.html
Expand Down

0 comments on commit 2cfbae9

Please sign in to comment.