increase rate limit on server-info to avoid errors and blank graphs

This commit is contained in:
Hazelnoot 2025-02-16 01:12:28 -05:00
parent 2d7918a9b7
commit 17ec2df3e1

View file

@ -64,10 +64,11 @@ export const meta = {
}, },
}, },
// 2 calls per second // 24 calls, then 7 per second-ish (1 for each type of server info graph)
limit: { limit: {
duration: 1000, max: 24,
max: 2, dripSize: 7,
dripRate: 900,
}, },
} as const; } as const;