increase rate limit on federation/update-remote-user
This commit is contained in:
parent
d0ddfca96f
commit
83f2d93d30
1 changed files with 4 additions and 3 deletions
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue