@embrace-io/web-sdk
Version:
15 lines (14 loc) • 498 B
JavaScript
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
//#region src/transport/RetryingTransport/constants.ts
const MAX_ATTEMPTS = 5;
const INITIAL_BACKOFF = 1e3;
const MAX_BACKOFF = 5e3;
const BACKOFF_MULTIPLIER = 1.5;
const JITTER = 20;
//#endregion
exports.BACKOFF_MULTIPLIER = BACKOFF_MULTIPLIER;
exports.INITIAL_BACKOFF = INITIAL_BACKOFF;
exports.JITTER = JITTER;
exports.MAX_ATTEMPTS = MAX_ATTEMPTS;
exports.MAX_BACKOFF = MAX_BACKOFF;
//# sourceMappingURL=constants.cjs.map