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: { limit: {
duration: 1000, type: 'bucket',
max: 2, size: 20,
dripRate: 250,
}, },
} as const; } as const;