feat: increase requests timeout to 60s (#8974)

Co-authored-by: llamantino <12345678+yourusername@users.noreply.github.com>
This commit is contained in:
llamantino
2025-06-09 20:42:03 +02:00
committed by GitHub
parent e5d21e003d
commit 77a0c5e073

View File

@@ -38,7 +38,7 @@ def send_request(
session: HttpSession,
method: str,
url: str,
timeout: int = 10,
timeout: int = 60,
**kwargs: Any,
) -> httpx.Response:
response = session.request(method, url, timeout=timeout, **kwargs)