mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 23:28:08 +01:00
Make rate limits a bit less strict
This commit is contained in:
parent
f427ff2487
commit
d189e671c6
1 changed files with 2 additions and 2 deletions
|
@ -6,12 +6,12 @@ class RateLimiter
|
|||
FAMILIES = {
|
||||
follows: {
|
||||
limit: 400,
|
||||
period: 24.hours.freeze,
|
||||
period: 12.hours.freeze,
|
||||
}.freeze,
|
||||
|
||||
statuses: {
|
||||
limit: 300,
|
||||
period: 3.hours.freeze,
|
||||
period: 1.hours.freeze,
|
||||
}.freeze,
|
||||
|
||||
reports: {
|
||||
|
|
Loading…
Reference in a new issue