fix rate limit errors from get-online-users-count

This commit is contained in:
Hazelnoot 2025-10-23 12:00:24 -04:00
parent 516a65b8c1
commit 30c8e8a1a8

View file

@ -28,10 +28,11 @@ export const meta = {
},
},
// 2 calls per second
// 20 calls, then 4 per second
limit: {
duration: 1000,
max: 2,
type: 'bucket',
size: 20,
dripRate: 250,
},
} as const;