Skip to content

Commit

Permalink
AiohttpClient: increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
globin committed Nov 29, 2023
1 parent d9623e3 commit bebd381
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atciss/app/utils/aiohttp_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def get(cls) -> aiohttp.ClientSession:
aiohttp.ClientSession: ClientSession object instance.
"""
logger.debug("Initialize AiohttpClient session.")
timeout = aiohttp.ClientTimeout(total=15)
timeout = aiohttp.ClientTimeout(total=60)
connector = aiohttp.TCPConnector(
family=AF_INET,
limit_per_host=SIZE_POOL_AIOHTTP,
Expand Down

0 comments on commit bebd381

Please sign in to comment.