Skip to content

Commit d04cd73

Browse files
Merge pull request #5987 from cylc/8.2.x-sync
🤖 Merge 8.2.x-sync into master
2 parents 2b2fc77 + 9936262 commit d04cd73

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

cylc/flow/option_parsers.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -240,14 +240,14 @@ class CylcOptionParser(OptionParser):
240240
"""Common options for all cylc CLI commands."""
241241

242242
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:
245245
Multiple Tasks:
246246
<dim># Operate on two tasks</dim>
247247
workflow //cycle-1/task-1 //cycle-2/task-2
248248
249249
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>
251251
'//*/foo'
252252
253253
<dim># Match the tasks "foo-1" and "foo-2"</dim>
@@ -260,7 +260,7 @@ class CylcOptionParser(OptionParser):
260260
See `cylc help id` for more details.
261261
'''))
262262
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:
264264
Multiple Workflows:
265265
<dim># Operate on two workflows</dim>
266266
workflow-1 workflow-2

cylc/flow/scripts/hold.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,13 @@
2020
2121
Hold task(s) in a workflow.
2222
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.
2430
2531
To pause an entire workflow use "cylc pause".
2632

0 commit comments

Comments
 (0)