ratelimits.main: rollback global_bucket to 50/1

This commit is contained in:
Luna Mendes 2018-11-04 02:24:13 -03:00
parent a96b9c5e7f
commit 1f5f736a8e
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ class RatelimitManager:
"""Manager for the bucket managers"""
def __init__(self):
self._ratelimiters = {}
self.global_bucket = Ratelimit(1, 1)
self.global_bucket = Ratelimit(50, 1)
self._fill_rtl()
def _fill_rtl(self):