increase rate limit on federation/update-remote-user

This commit is contained in:
Hazelnoot 2025-02-01 18:53:32 -05:00
parent d0ddfca96f
commit 83f2d93d30

View file

@ -13,10 +13,11 @@ export const meta = {
requireCredential: false,
// 2 calls per second
// Up to 10 calls, then 4 / second.
// This allows for reliable automation.
limit: {
duration: 1000,
max: 2,
max: 10,
dripRate: 250,
},
} as const;