diff --git a/crawl4ai/docker_client.py b/crawl4ai/docker_client.py index 969fee7c..6624cf07 100644 --- a/crawl4ai/docker_client.py +++ b/crawl4ai/docker_client.py @@ -180,7 +180,7 @@ class Crawl4aiDockerClient: yield CrawlResult(**result) return stream_results() - response = await self._request("POST", "/crawl", json=data) + response = await self._request("POST", "/crawl", json=data, timeout=hooks_timeout) result_data = response.json() if not result_data.get("success", False): raise RequestError(f"Crawl failed: {result_data.get('msg', 'Unknown error')}")