From e1b9c57ac20cb91145c138dbc62c03f418c3dc36 Mon Sep 17 00:00:00 2001 From: Max Bohomolov Date: Tue, 12 Aug 2025 22:06:21 +0000 Subject: [PATCH] fix timeout from stream method --- src/crawlee/http_clients/_impit.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/crawlee/http_clients/_impit.py b/src/crawlee/http_clients/_impit.py index cf22f7ad78..0eec36a956 100644 --- a/src/crawlee/http_clients/_impit.py +++ b/src/crawlee/http_clients/_impit.py @@ -193,6 +193,7 @@ async def stream( url=url, content=payload, headers=dict(headers) if headers else None, + timeout=timeout.total_seconds() if timeout else None, stream=True, ) try: