fix(downloads): increase retry attempts and backoff for large file downloads

This commit is contained in:
Ben Gauger 2026-04-02 12:36:30 -06:00
parent 215eba3156
commit 6fddfba000

View File

@ -228,8 +228,8 @@ export class RunDownloadJob {
try {
const job = await queue.add(this.key, params, {
jobId,
attempts: 3,
backoff: { type: 'exponential', delay: 2000 },
attempts: 10,
backoff: { type: 'exponential', delay: 30000 },
removeOnComplete: true,
})