cc manual

This commit is contained in:
Gergő Móricz 2025-04-02 19:27:10 +02:00
parent 3300c6c598
commit b3b63486f1

View File

@ -240,6 +240,7 @@ const testSuiteTokens = [
"0a18c9e", // gh
];
const manual_growth = ["778c62c4-306f-4039-b372-eb20174760c0"];
const manual = ["69be9e74-7624-4990-b20d-08e0acc70cf6", "9661a311-3d75-45d2-bb70-71004d995873"];
const manual_etier2c = ["77545e01-9cec-4fa9-8356-883fc66ac13e"];
@ -331,6 +332,10 @@ export function getConcurrencyLimitMax(
return CONCURRENCY_LIMIT.etier2c;
}
if (teamId && manual_growth.includes(teamId)) {
return CONCURRENCY_LIMIT.growth;
}
return CONCURRENCY_LIMIT[plan] ?? 10;
}