fix: increase recursion threshold limit and window for improved request handling

This commit is contained in:
Viren070
2025-06-15 20:19:54 +01:00
parent f3a3683941
commit cc2acdeb7a
+2 -2
View File
@@ -296,11 +296,11 @@ export const Env = cleanEnv(process.env, {
}),
RECURSION_THRESHOLD_LIMIT: num({
default: 30,
default: 60,
desc: 'Maximum number of requests to the same URL',
}),
RECURSION_THRESHOLD_WINDOW: num({
default: 5,
default: 10,
desc: 'Time window for recursion threshold in seconds',
}),