Pause
Command description
Pause workflow execution for a specified duration, then continue with the next command.
Use either a fixed duration or a range. With a range, each execution selects a random duration between the configured minimum and maximum.
Command Input Parameters
| input parameters | Input parameter type | Description |
|---|---|---|
| Pause Duration | number or str | Fixed pause duration, in seconds |
| Enable Pause Time Range | bool | Whether to enable random pause time range, default False |
| Minimum Pause Duration | number or str | Minimum pause duration, in seconds; required only when a pause range is enabled |
| Maximum Pause Duration | number or str | Maximum pause duration, in seconds; required only when a pause range is enabled |
Command Output Parameters
None
Fixed pause example
{
"children": [],
"in": {
"Pause Duration": "3"
},
"out": {},
"comments": "Fixed pause of 3 seconds",
"ins": "Pause"
}
Range Pause Example
{
"children": [],
"in": {
"Enable Pause Time Range": "True",
"Minimum Pause Duration": "2",
"Maximum Pause Duration": "5"
},
"out": {},
"comments": "Randomly pause 2 to 5 seconds",
"ins": "Pause"
}