mirror of
https://git.mirrors.martin98.com/https://github.com/mendableai/firecrawl
synced 2025-06-04 11:24:40 +08:00
fix(concurrency-limit): allow for big crawls
This commit is contained in:
parent
1951b60881
commit
1e7d42e8af
@ -10,7 +10,7 @@ const constructQueueKey = (team_id: string) =>
|
||||
export function calculateJobTimeToRun(
|
||||
job: ConcurrencyLimitedJob
|
||||
): number {
|
||||
let jobTimeToRun = 2 * 60 * 1000;
|
||||
let jobTimeToRun = 86400000; // 24h (crawl)
|
||||
|
||||
if (job.data.scrapeOptions) {
|
||||
if (job.data.scrapeOptions.timeout) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user