merge: Increase rate limit on federation/update-remote-user endpoint (!880)

View MR for information: https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/880

Approved-by: dakkar <dakkar@thenautilus.net>
Approved-by: Marie <github@yuugi.dev>
This commit is contained in:
Marie 2025-02-07 03:41:00 +00:00
commit e401724835

View file

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