Increase limit

This commit is contained in:
Matej Bačo 2024-12-12 21:00:04 +01:00
parent 04139d6901
commit ab7ea056e6

View file

@ -191,7 +191,7 @@ App::post('/v1/functions')
// Temporary abuse check
$abuseKey = "projectId:{projectId},url:{url}";
$abuseLimit = 5;
$abuseLimit = 50;
$abuseTime = 86400; // 1 day
$timeLimit = new TimeLimit($abuseKey, $abuseLimit, $abuseTime, $dbForProject);