Make rate limits a bit less strict

This commit is contained in:
Jeremy Kescher 2022-06-06 10:08:25 +02:00
parent f427ff2487
commit d189e671c6
No known key found for this signature in database
GPG key ID: 48DFE4BB15BA5940

View file

@ -6,12 +6,12 @@ class RateLimiter
FAMILIES = { FAMILIES = {
follows: { follows: {
limit: 400, limit: 400,
period: 24.hours.freeze, period: 12.hours.freeze,
}.freeze, }.freeze,
statuses: { statuses: {
limit: 300, limit: 300,
period: 3.hours.freeze, period: 1.hours.freeze,
}.freeze, }.freeze,
reports: { reports: {