Skip to content

DEFAULT_JITTER_FACTOR

const DEFAULT_JITTER_FACTOR: 0.25 = 0.25;

Defined in: packages/core/src/shared/utils/backoff.ts:25

Default jitter factor applied to backoff delays.

A factor of 0.25 means the delay is randomly spread ±25% around the calculated value. This prevents thundering-herd retries when many jobs fail simultaneously with the same failCount.

0.25