Skip to content

Commit b49fcfd

Browse files
committed
chore(throttler): relax rate limits
1 parent 48e2a96 commit b49fcfd

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/config/loaders/throttler.config-loader.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,27 +16,27 @@ export function getThrottlerConfig(
1616
{
1717
name: 'strict',
1818
ttl: seconds(30),
19-
limit: 20
19+
limit: 50
2020
},
2121
{
2222
name: 'moderate',
2323
ttl: seconds(120),
24-
limit: 100
24+
limit: 200
2525
},
2626
{
2727
name: 'relaxed',
2828
ttl: seconds(600),
29-
limit: 1000
29+
limit: 2000
3030
},
3131
{
3232
name: 'burst',
3333
ttl: seconds(5),
34-
limit: 50
34+
limit: 100
3535
},
3636
{
3737
name: 'hourly',
3838
ttl: seconds(3600),
39-
limit: 5000
39+
limit: 10000
4040
}
4141
],
4242
errorMessage:

0 commit comments

Comments
 (0)