You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: 'Pause workflow execution for a time interval',
12
12
longDescription:
13
-
'Pauses workflow execution for a specified time interval. By default the wait runs in-process for up to 5 minutes. Enable Suspend Workflow to pause the run on disk and resume automatically for waits up to 30 days.',
13
+
'Pauses workflow execution for a specified time interval. By default the wait runs in-process for up to 5 minutes. Enable Async to pause the run on disk and resume automatically for waits up to 30 days.',
14
14
bestPractices: `
15
15
- Configure the wait amount and unit
16
16
- Default mode runs in-process and caps at 5 minutes
17
-
- Enable Suspend Workflow for longer waits (up to 30 days); seconds are not available in this mode
17
+
- Enable Async for longer waits (up to 30 days); seconds are not available in this mode
'By default, the workflow pauses in memory and can wait up to 5 minutes. Turn this on to suspend the run to disk so it can wait much longer (up to 30 days) — execution resumes automatically when the timer fires. Seconds aren’t available while suspended.',
64
+
'By default, the workflow pauses in memory and can wait up to 5 minutes. Turn this on to run asynchronously — the workflow is saved to disk and resumed automatically when the timer fires, allowing waits up to 30 days. Seconds aren’t available in async mode.',
65
65
},
66
66
],
67
67
tools: {
68
68
access: [],
69
69
},
70
70
inputs: {
71
-
suspend: {
71
+
async: {
72
72
type: 'boolean',
73
-
description: 'Suspend the workflow to allow waits up to 30 days',
73
+
description: 'Run the wait asynchronously to allow durations up to 30 days',
74
74
},
75
75
timeValue: {
76
76
type: 'string',
77
77
description: 'Wait duration value',
78
78
},
79
79
timeUnit: {
80
80
type: 'string',
81
-
description: 'Wait duration unit when suspend is off (seconds or minutes)',
81
+
description: 'Wait duration unit when async is off (seconds or minutes)',
82
82
},
83
83
timeUnitLong: {
84
84
type: 'string',
85
-
description: 'Wait duration unit when suspend is on (minutes, hours, or days)',
85
+
description: 'Wait duration unit when async is on (minutes, hours, or days)',
0 commit comments