We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 270c39c commit e4f4a06Copy full SHA for e4f4a06
src/v2/providers/scheduler.ts
@@ -113,7 +113,11 @@ export interface ScheduleOptions extends options.GlobalOptions {
113
/** The timezone that the schedule executes in. */
114
timeZone?: timezone | Expression<string> | ResetValue;
115
116
- /** The deadline for job attempts. Defaults to 180 seconds. */
+ /**
117
+ * The deadline for job attempts in seconds. If the request handler does not respond by this deadline,
118
+ * the request is cancelled and the attempt is marked as a `DEADLINE_EXCEEDED` failure.
119
+ * The value must be between 15 and 1800. Defaults to 180.
120
+ */
121
attemptDeadlineSeconds?: number | Expression<number> | ResetValue;
122
123
/** The number of retry attempts for a failed run. */
0 commit comments