Skip to content

Commit f2f16ca

Browse files
committed
fix: Set default http3=False for ImpitHttpClient (apify#1685)
### Description - Set default `http3=False` for `ImpitHttpClient`.Since in some cases the `http3=True` flag causes the proxy to be ignored ### Issues - Closes: apify#1683
1 parent 9d143a7 commit f2f16ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/crawlee/http_clients/_impit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def __init__(
9292
self,
9393
*,
9494
persist_cookies_per_session: bool = True,
95-
http3: bool = True,
95+
http3: bool = False,
9696
verify: bool = True,
9797
browser: Browser | None = 'firefox',
9898
**async_client_kwargs: Any,

0 commit comments

Comments
 (0)