Skip to content

Instantly share code, notes, and snippets.

@SemantiveCode
Last active October 31, 2018 10:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SemantiveCode/da35b65853bb0aa6e912231a35de02ad to your computer and use it in GitHub Desktop.
Save SemantiveCode/da35b65853bb0aa6e912231a35de02ad to your computer and use it in GitHub Desktop.
Retry GetActivityTask from State Machine
{
"Type": "Task",
"Resource": "${async_invoke_lambda_arn}",
"End": true,
"Retry": [
{
"ErrorEquals": ["MissingScheduledActivityTaskException"],
"IntervalSeconds": 3,
"MaxAttempts": 3,
"BackoffRate": 1.5
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment