Skip to content

Commit

Permalink
docs: submit-failed must be optional
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-sanders committed Apr 15, 2024
1 parent e730343 commit 30bfb9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/user-guide/writing-workflows/scheduling.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1099,10 +1099,10 @@ To trigger off of a task submitting, or failing to submit:
.. code-block:: cylc
# B triggers if A submits successfully:
R1 = "A:submit => B"
R1 = "A:submit? => B"
# D triggers if C fails to submit successfully:
R1 = "C:submit-fail => D"
R1 = "C:submit-fail? => D"
A possible use case for submit-fail triggering: if a task fails to submit,
possibly after multiple retries, another task that inherits (mostly) the same
Expand Down

0 comments on commit 30bfb9c

Please sign in to comment.