Skip to content

Latest commit

 

History

History
17 lines (9 loc) · 757 Bytes

File metadata and controls

17 lines (9 loc) · 757 Bytes

RetryStrategy

RetryStrategy provides controls on how to retry a taskgraph node

Properties

Name Type Description Notes
backoff Backoff [optional]
expression String Expression is a condition expression for when a node will be retried. If it evaluates to false, the node will not be retried and the retry strategy will be ignored [optional]
limit Integer Limit is the maximum number of retry attempts when retrying a container. It does not include the original container; the maximum number of total attempts will be `limit + 1`. [optional]
retryPolicy RetryPolicy [optional]