Double all timeout values to prevent download/upsert timeouts

This commit is contained in:
2026-07-20 04:37:31 +00:00
parent 6b3fa63501
commit d347e0e586
13 changed files with 1070 additions and 29 deletions
+2 -2
View File
@@ -22,8 +22,8 @@ async def get_redis() -> aioredis.Redis:
redis_client = aioredis.from_url(
settings.REDIS_URL,
decode_responses=True,
socket_connect_timeout=5,
socket_timeout=5,
socket_connect_timeout=10,
socket_timeout=10,
)
await redis_client.ping()
logger.info("Connected to Redis")