File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -240,14 +240,14 @@ class CylcOptionParser(OptionParser):
240
240
"""Common options for all cylc CLI commands."""
241
241
242
242
MULTITASK_USAGE = cparse (dedent ('''
243
- This command can operate on multiple tasks, globs and selectors may
244
- be used:
243
+ This command can operate on multiple tasks. Globs and selectors may
244
+ be used to match active tasks :
245
245
Multiple Tasks:
246
246
<dim># Operate on two tasks</dim>
247
247
workflow //cycle-1/task-1 //cycle-2/task-2
248
248
249
249
Globs (note: globs should be quoted and only match active tasks):
250
- <dim># Match any the active task "foo" in all cycles</dim>
250
+ <dim># Match any active task "foo" in all cycles</dim>
251
251
'//*/foo'
252
252
253
253
<dim># Match the tasks "foo-1" and "foo-2"</dim>
@@ -260,7 +260,7 @@ class CylcOptionParser(OptionParser):
260
260
See `cylc help id` for more details.
261
261
''' ))
262
262
MULTIWORKFLOW_USAGE = cparse (dedent ('''
263
- This command can operate on multiple workflows, globs may also be used:
263
+ This command can operate on multiple workflows. Globs may be used:
264
264
Multiple Workflows:
265
265
<dim># Operate on two workflows</dim>
266
266
workflow-1 workflow-2
Original file line number Diff line number Diff line change 20
20
21
21
Hold task(s) in a workflow.
22
22
23
- Held tasks do not submit their jobs even if ready to run.
23
+ Held tasks do not submit jobs even if ready.
24
+
25
+ Any task can be held.
26
+
27
+ Note: a held running task will not submit more jobs itself (e.g. by retries)
28
+ until released, but the running job may still complete outputs that cause
29
+ non-held downstream tasks to trigger.
24
30
25
31
To pause an entire workflow use "cylc pause".
26
32
You can’t perform that action at this time.
0 commit comments