fix(queue-jobs): never cc timeout jobs that are crawl-associated (makes no sense)
This commit is contained in:
@@ -46,7 +46,7 @@ async function _addScrapeJobToConcurrencyQueue(
|
|||||||
jobId: jobId,
|
jobId: jobId,
|
||||||
},
|
},
|
||||||
priority: jobPriority,
|
priority: jobPriority,
|
||||||
}, webScraperOptions.scrapeOptions?.timeout ?? (60 * 1000));
|
}, webScraperOptions.crawl_id ? Infinity :(webScraperOptions.scrapeOptions?.timeout ?? (60 * 1000)));
|
||||||
}
|
}
|
||||||
|
|
||||||
async function _addCrawlScrapeJobToConcurrencyQueue(
|
async function _addCrawlScrapeJobToConcurrencyQueue(
|
||||||
|
|||||||
Reference in New Issue
Block a user