fix(sitemap): increase limit
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user