mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
fix: loosen rate limit (#7725)
This commit is contained in:
parent
e4cfaedf30
commit
31246ebd4a
1 changed files with 1 additions and 1 deletions
|
|
@ -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');
|
||||
|
|
|
|||
Loading…
Reference in a new issue