Skip to content

Commit

Permalink
Fix command help text [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
hjoliver committed Dec 2, 2024
1 parent 0372d91 commit 02f1a22
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 2 additions & 3 deletions cylc/flow/scripts/pause.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,9 @@

"""cylc pause [OPTIONS] ARGS
Pause a workflow.
Suspend all automatic job submission until the workflow is resumed.
This suspends submission of all tasks until the workflow is resumed, except
for tasks manually triggered "now" with `cylc trigger --now`.
Manually triggering can still run tasks immediately, if the workflow is paused.
Examples:
# pause my_workflow
Expand Down
6 changes: 5 additions & 1 deletion cylc/flow/scripts/trigger.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@
Triggering an unqueued task queues it, to run when released by the queue.
Triggering a queued task runs it immediately regardless of queue limiting.
So you may need to trigger a task twice if queue limiting is in effect.
So you may need to trigger tasks twice if queue limiting is in effect.
If the workflow is paused queued waiting tasks will not run (unless manually
triggered) until the workflow is resumed, even if the queue empties out. This
includes tasks queued by manual triggering, when queue limits are in effect.
Attempts to trigger active tasks (submitted or running) will be ignored.
Expand Down

0 comments on commit 02f1a22

Please sign in to comment.