Skip to content

Commit 3a3aacb

Browse files
authored
Merge pull request #712 from oliver-sanders/optional-outputs-extension
docs: submit-failed must be optional
2 parents 3269897 + 30bfb9c commit 3a3aacb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/user-guide/writing-workflows/scheduling.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1099,10 +1099,10 @@ To trigger off of a task submitting, or failing to submit:
10991099
.. code-block:: cylc
11001100
11011101
# B triggers if A submits successfully:
1102-
R1 = "A:submit => B"
1102+
R1 = "A:submit? => B"
11031103
11041104
# D triggers if C fails to submit successfully:
1105-
R1 = "C:submit-fail => D"
1105+
R1 = "C:submit-fail? => D"
11061106
11071107
A possible use case for submit-fail triggering: if a task fails to submit,
11081108
possibly after multiple retries, another task that inherits (mostly) the same

0 commit comments

Comments
 (0)