Skip to content

Commit 27f243e

Browse files
authored
[server] Lower default rate limit per connection/user to 200 per minute (#16992)
1 parent b465d06 commit 27f243e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/server/src/auth/rate-limiter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ function getConfig(config: RateLimiterConfig): RateLimiterConfig {
245245
// Be aware that some of our API calls are bound by rate-limits in downstream systems like ws-manager
246246
const defaultGroups: GroupsConfig = {
247247
default: {
248-
points: 60000, // 1,000 calls per user per second
248+
points: 200, // 200 calls per user, per connection, per minute
249249
durationsSec: 60,
250250
},
251251
startWorkspace: {

0 commit comments

Comments
 (0)