From 00ab65aee33cf4d9e0a1ff69c9a60bb591ff1fa1 Mon Sep 17 00:00:00 2001 From: Sergio Ramirez Date: Tue, 24 Mar 2026 12:06:23 -0400 Subject: [PATCH] cambios en thorttler --- apps/api/src/common/modules/throttle.module.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/api/src/common/modules/throttle.module.ts b/apps/api/src/common/modules/throttle.module.ts index 092eebc..e35d39f 100644 --- a/apps/api/src/common/modules/throttle.module.ts +++ b/apps/api/src/common/modules/throttle.module.ts @@ -8,17 +8,17 @@ import { ThrottlerModule } from '@nestjs/throttler'; { name: 'short', ttl: 1000, // 1 sec - limit: 2, + limit: 10, }, { name: 'medium', ttl: 10000, // 10 sec - limit: 4, + limit: 30, }, { name: 'long', ttl: 60000, // 1 min - limit: 10, + limit: 100, }, ], errorMessage: 'Too many requests, please try again later.',