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
Copy file name to clipboardExpand all lines: src/content/docs/workflows/build/workers-api.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ Objects that include `Function` or `Symbol` types, and objects with circular ref
92
92
93
93
*`name` - the name of the step.
94
94
*`duration` - the duration to sleep until, in either seconds or as a `WorkflowDuration` compatible string.
95
-
* Refer to the [documentation on sleeping and retrying](/workflows/build/sleeping-and-retrying/) to learn more about how how Workflows are retried.
95
+
* Refer to the [documentation on sleeping and retrying](/workflows/build/sleeping-and-retrying/) to learn more about how Workflows are retried.
96
96
97
97
* <code>step.sleepUntil(name: string, timestamp: Date | number): Promise<void></code>
98
98
@@ -143,14 +143,14 @@ export type WorkflowStepConfig = {
143
143
144
144
* A `WorkflowStepConfig` is an optional argument to the `do` method of a `WorkflowStep` and defines properties that allow you to configure the retry behaviour of that step.
145
145
146
-
Refer to the [documentation on sleeping and retrying](/workflows/build/sleeping-and-retrying/) to learn more about how how Workflows are retried.
146
+
Refer to the [documentation on sleeping and retrying](/workflows/build/sleeping-and-retrying/) to learn more about how Workflows are retried.
147
147
148
148
## NonRetryableError
149
149
150
150
* <code>throw new NonRetryableError(message: <Typetext='string' />, name <Typetext='string' /> <MetaInfotext='optional' />)</code>: <Typetext='NonRetryableError' />
151
151
152
152
* Throws an error that forces the current Workflow instance to fail and not be retried.
153
-
* Refer to the [documentation on sleeping and retrying](/workflows/build/sleeping-and-retrying/) to learn more about how how Workflows are retried.
153
+
* Refer to the [documentation on sleeping and retrying](/workflows/build/sleeping-and-retrying/) to learn more about how Workflows are retried.
0 commit comments