How to retry action in stackstorm workflow #5481
Unanswered
komalphadatare
asked this question in
Q&A
Replies: 1 comment
-
Without seeing how your yaml is formatted its really difficult to troubleshoot this. Have you looked at the workflow examples? Specifically this one about retries Without the formatting I can only make guesses here. It seems like maybe you have the key tasks:
my__task:
retry: Whereas it should be under tasks:
my_task:
retry: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
hi,
I want to retry core.remote action how we can achieve retry action in workflow
I have tried below format but it shows me error tasks['xyz'] - should NOT have additional properties ("retry")
version: 1.0
input:
tasks:
task1:
action: core.remote cmd=<% ctx().command %>
retry:
delay: 1
count: 3
next:
- when: <% succeeded() %>
do: task2
task2:
action: core.noop
Regards,
komal
Beta Was this translation helpful? Give feedback.
All reactions