Fix throttle TTL to use milliseconds per NestJS v6 docs

Co-authored-by: abouolia <2197422+abouolia@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-10-30 20:05:18 +00:00
parent d9e07fdd99
commit d035bcc9a3

View File

@@ -2,10 +2,12 @@ import { registerAs } from '@nestjs/config';
export default registerAs('throttle', () => ({
global: {
ttl: parseInt(process.env.THROTTLE_GLOBAL_TTL ?? '60', 10),
// TTL in milliseconds (NestJS throttler v6+)
ttl: parseInt(process.env.THROTTLE_GLOBAL_TTL ?? '60000', 10),
limit: parseInt(process.env.THROTTLE_GLOBAL_LIMIT ?? '100', 10),
},
auth: {
// TTL in milliseconds (NestJS throttler v6+)
ttl: parseInt(process.env.THROTTLE_AUTH_TTL ?? '60000', 10),
limit: parseInt(process.env.THROTTLE_AUTH_LIMIT ?? '10', 10),
},