Reduced deep scrape concurrency to 1.

This commit is contained in:
DebaucheryLibrarian 2021-12-01 23:39:09 +01:00
parent c97d18fcf9
commit 60c151ff6a
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ async function scrapeReleases(baseReleases, entitiesBySlug, type) {
return Promise.map(
baseReleases,
async (baseRelease) => scrapeRelease(baseRelease, entitiesWithBeforeDataBySlug, type),
{ concurrency: 3 },
{ concurrency: 1 },
);
}