From 0fdae02beef39b1d38d1d1f91a7282f1d9756cd1 Mon Sep 17 00:00:00 2001 From: Cosmo <48590313+viniciuscosmome@users.noreply.github.com> Date: Fri, 26 Jan 2024 21:16:53 -0300 Subject: [PATCH] test: update throttler --- src/config/throttler.ts | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/config/throttler.ts b/src/config/throttler.ts index 0cff84a..dd2af3f 100644 --- a/src/config/throttler.ts +++ b/src/config/throttler.ts @@ -2,12 +2,8 @@ import { ThrottlerOptions, ThrottlerModuleOptions } from '@nestjs/throttler'; export const throttlers: Array = [ { - ttl: 1000, - limit: 3, - }, - { - ttl: 10000, - limit: 20, + ttl: 20000, + limit: 1000, }, ];