Skip to main content
Version: 8.9 (unreleased)

Type Alias: JobFailRequest

type JobFailRequest = object;

Defined in: gen/types.gen.ts:3708

Properties

errorMessage?

optional errorMessage: string;

Defined in: gen/types.gen.ts:3716

An optional error message describing why the job failed; if not provided, an empty string is used.


retries?

optional retries: number;

Defined in: gen/types.gen.ts:3712

The amount of retries the job should have left


retryBackOff?

optional retryBackOff: number;

Defined in: gen/types.gen.ts:3720

An optional retry back off for the failed job. The job will not be retryable before the current time plus the back off time. The default is 0 which means the job is retryable immediately.


variables?

optional variables: object;

Defined in: gen/types.gen.ts:3725

JSON object that will instantiate the variables at the local scope of the job's associated task.

Index Signature

[key: string]: unknown