From fd7376c7c0aa41cd21213f2d3d2c21863080824c Mon Sep 17 00:00:00 2001 From: Max Bohomolov Date: Sat, 24 Jan 2026 16:05:09 +0000 Subject: [PATCH] set `http3=False` for `ImpitHttpClient` --- src/crawlee/http_clients/_impit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crawlee/http_clients/_impit.py b/src/crawlee/http_clients/_impit.py index 0fca9c94ef..7ff441d5d3 100644 --- a/src/crawlee/http_clients/_impit.py +++ b/src/crawlee/http_clients/_impit.py @@ -92,7 +92,7 @@ def __init__( self, *, persist_cookies_per_session: bool = True, - http3: bool = True, + http3: bool = False, verify: bool = True, browser: Browser | None = 'firefox', **async_client_kwargs: Any,