|
25 | 25 | To pause an entire workflow use "cylc pause". |
26 | 26 |
|
27 | 27 | Examples: |
28 | | - # Hold mytask at cycle point 1234 in my_flow (if it has not yet spawned, it |
29 | | - # will hold as soon as it spawns): |
30 | | - $ cylc hold my_flow//1234/mytask |
| 28 | + # Hold mytask at cycle point 1234 in my_workflow (if it has not yet spawned, |
| 29 | + # it will hold as soon as it spawns): |
| 30 | + $ cylc hold my_workflow//1234/mytask |
31 | 31 |
|
32 | | - # Hold all active tasks at cycle 1234 in my_flow (note: tasks before/after |
33 | | - # this cycle point will not be held): |
34 | | - $ cylc hold 'my_flow//1234/*' |
| 32 | + # Hold all active tasks at cycle 1234 in my_workflow (note: tasks |
| 33 | + # before/after this cycle point will not be held): |
| 34 | + $ cylc hold 'my_workflow//1234/*' |
35 | 35 |
|
36 | | - # Hold all active instances of mytask in my_flow (note: this will not hold |
37 | | - # any unspawned tasks that might spawn in the future): |
38 | | - $ cylc hold 'my_flow//*/mytask' |
| 36 | + # Hold all active instances of mytask in my_workflow (note: this will not |
| 37 | + # hold any unspawned tasks that might spawn in the future): |
| 38 | + $ cylc hold 'my_workflow//*/mytask' |
39 | 39 |
|
40 | 40 | # Hold all active failed tasks: |
41 | | - $ cylc hold 'my_flow//*:failed' |
| 41 | + $ cylc hold 'my_workflow//*:failed' |
42 | 42 |
|
43 | | - # Hold all tasks after cycle point 1234 in my_flow: |
44 | | - $ cylc hold my_flow// --after=1234 |
| 43 | + # Hold all tasks after cycle point 1234 in my_workflow: |
| 44 | + $ cylc hold my_workflow// --after=1234 |
45 | 45 |
|
46 | | - # Hold cycles 1, 2 & 3 in my_flow: |
47 | | - $ cylc hold my_flow// //1 //2 //3 |
| 46 | + # Hold cycles 1, 2 & 3 in my_workflow: |
| 47 | + $ cylc hold my_workflow// //1 //2 //3 |
48 | 48 |
|
49 | | - # Hold cycle "1" in "my_flow_1" and "my_flow_2": |
50 | | - $ cylc hold my_flow_1//1 my_flow_2//1 |
| 49 | + # Hold cycle "1" in "my_workflow_1" and "my_workflow_2": |
| 50 | + $ cylc hold my_workflow_1//1 my_workflow_2//1 |
51 | 51 |
|
52 | 52 | Note: To pause a workflow (immediately preventing all job submission), use |
53 | 53 | 'cylc pause' instead. |
|
0 commit comments