Increase the file upload rate limit from 200 to 500 per 15 mins (#24312)

GitOrigin-RevId: e57cc9f8dc12d40ce30eba0ef8067dd3ae72f3ea
This commit is contained in:
Alf Eaton
2025-03-19 09:30:59 +00:00
committed by Copybot
parent 1bbb0dabb3
commit d742a57cb4

View File

@@ -11,7 +11,7 @@ const rateLimiters = {
duration: 60,
}),
fileUpload: new RateLimiter('file-upload', {
points: 200,
points: 500,
duration: 60 * 15,
}),
}