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
It would be helpful to have a feature that allows retrying a task based on custom exit codes. This feature would specify certain non-zero exit codes where retries should occur, while other non-zero exit codes would cause the task to fail immediately.
Example configuration:
steps:
- name: retryable taskcommand: main.shretryPolicy:
limit: 3intervalSec: 5exitCode: [1, 2] # Retries if the exit code is 1 or 2; otherwise, the task fails.
The text was updated successfully, but these errors were encountered:
It would be helpful to have a feature that allows retrying a task based on custom exit codes. This feature would specify certain non-zero exit codes where retries should occur, while other non-zero exit codes would cause the task to fail immediately.
Example configuration:
The text was updated successfully, but these errors were encountered: