From 97c73118a828a5298e0e8390ffb8464b0128198c Mon Sep 17 00:00:00 2001 From: Xen0Xys Date: Wed, 7 Feb 2024 17:09:09 +0100 Subject: [PATCH] :bug: Temporary disable api rate limit --- src/app.module.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app.module.ts b/src/app.module.ts index 4c0e552..839d59e 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -37,10 +37,10 @@ dotenv.config(); password: process.env.REDIS_PASSWORD === "" ? undefined : process.env.REDIS_PASSWORD, }); })(), - ThrottlerModule.forRoot([{ - ttl: 60000, - limit: 100, - }]), + // ThrottlerModule.forRoot([{ + // ttl: 60000, + // limit: 100, + // }]), AuthModule, GlobalTasksModule, CronModule,