Files
klz-cables.com/.pnpm-store/v10/files/cc/0882598fba7beadbf6f88e0cf33ce141cd24b1d6a8ea089ab37de4475f526e84afaf38671534f564de1b82cc2759f3ec49cf48b2f361a8eb7b618d0755fb61
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

20 lines
646 B
Plaintext

import type { Job } from '../../index.js';
import type { RetryConfig } from '../config/types/taskTypes.js';
/**
* Assuming there is no task that has already reached max retries,
* this function determines if the workflow should retry the job
* and if so, when it should retry.
*/
export declare function getWorkflowRetryBehavior({ job, retriesConfig, }: {
job: Job;
retriesConfig?: number | RetryConfig;
}): {
hasFinalError: false;
maxWorkflowRetries?: number;
waitUntil?: Date;
} | {
hasFinalError: true;
maxWorkflowRetries?: number;
waitUntil?: Date;
};
//# sourceMappingURL=getWorkflowRetryBehavior.d.ts.map