chore: add sort order in URL params

This commit is contained in:
Abhishek Kumar 2026-02-06 09:01:06 +05:30
parent e8005042e2
commit 9824d88d53
7 changed files with 148 additions and 59 deletions

View file

@ -13,7 +13,7 @@ class RateLimiter:
def __init__(self):
self.redis_client: Optional[aioredis.Redis] = None
self.stale_call_timeout = 1800 # 30 minutes in seconds
self.stale_call_timeout = 300 # 5 minutes in seconds
async def _get_redis(self) -> aioredis.Redis:
"""Get or create Redis connection"""