mirror of
https://git.mirrors.martin98.com/https://github.com/mendableai/firecrawl
synced 2025-08-02 05:20:38 +08:00
Update apps/api/src/services/queue-jobs.ts
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
parent
6287db8492
commit
5457b71454
@ -230,8 +230,7 @@ export async function addScrapeJobs(
|
|||||||
|
|
||||||
// equals 2x the max concurrency
|
// equals 2x the max concurrency
|
||||||
if(addToCQ.length > maxConcurrency) {
|
if(addToCQ.length > maxConcurrency) {
|
||||||
logger.info("Concurrency limited 2x (multiple) - Concurrency queue jobs: " + addToCQ.length + "Max concurrency: " + maxConcurrency + "Team ID: " + jobs[0].data.team_id);
|
logger.info(`Concurrency limited 2x (multiple) - Concurrency queue jobs: ${addToCQ.length} Max concurrency: ${maxConcurrency} Team ID: ${jobs[0].data.team_id}`);
|
||||||
|
|
||||||
// Only send notification if it's not a crawl or batch scrape
|
// Only send notification if it's not a crawl or batch scrape
|
||||||
if (!isCrawlOrBatchScrape(dontAddToCCQ[0].data)) {
|
if (!isCrawlOrBatchScrape(dontAddToCCQ[0].data)) {
|
||||||
const shouldSendNotification = await shouldSendConcurrencyLimitNotification(dontAddToCCQ[0].data.team_id);
|
const shouldSendNotification = await shouldSendConcurrencyLimitNotification(dontAddToCCQ[0].data.team_id);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user