fix(cc): hotfix

This commit is contained in:
Gergő Móricz 2025-01-30 16:07:36 +01:00
parent a7eb2f7c6a
commit 71878cf4d9

View File

@ -9,6 +9,7 @@ const constructQueueKey = (team_id: string) =>
const stalledJobTimeoutMs = 2 * 60 * 1000;
export function getConcurrencyLimitMax(plan: string): number {
if (plan === "growth") return 100;
return getRateLimiterPoints(RateLimiterMode.Scrape, undefined, plan);
}