mirror of
https://git.mirrors.martin98.com/https://github.com/mendableai/firecrawl
synced 2025-08-08 06:48:59 +08:00
fix(sitemap): increase limit
This commit is contained in:
parent
bee2b2873e
commit
1e28ba291e
@ -21,8 +21,8 @@ export async function getLinksFromSitemap(
|
|||||||
crawlId: string,
|
crawlId: string,
|
||||||
sitemapsHit: Set<string>,
|
sitemapsHit: Set<string>,
|
||||||
): Promise<number> {
|
): Promise<number> {
|
||||||
if (sitemapsHit.size >= 5) {
|
if (sitemapsHit.size >= 10) {
|
||||||
logger.warn("Sitemap limit of 5 hit, not hitting this one.");
|
logger.warn("Sitemap limit hit, not hitting this one.");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user