fix: loosen rate limit (#7725)

This commit is contained in:
Laurin 2026-02-24 12:46:37 +01:00 committed by GitHub
parent e4cfaedf30
commit 31246ebd4a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -27,7 +27,7 @@ export class RedisRateLimiter {
/** duration of the time window */
timeWindowSeconds = 5 * 60,
/** maximum amount of requests allowed in the time window */
maxActionsPerTimeWindow = 10,
maxActionsPerTimeWindow = 30,
) {
if (!this.config.config) {
this.logger.debug('rate limiting is disabled');