ERR_EMPTY_RESPONSEWhat ERR_EMPTY_RESPONSE means
ERR_EMPTY_RESPONSE (Chrome network error -324) means the TCP connection succeeded, the browser sent its request, and the server closed the connection without returning a single byte — no status line, no headers, nothing. It differs from ERR_CONNECTION_RESET, where the connection is torn down abruptly; an empty response is a clean close with zero data sent.
On the server side, the classic causes are a crashing worker process, a misconfigured virtual host with nothing to serve for that hostname, or a keep-alive connection your client reused after the server had already closed it. Local software — antivirus web filters, misbehaving browser extensions — can also swallow responses before they reach the page.
For scraping and automation traffic there's a more pointed explanation: many anti-bot layers respond to requests from flagged IP ranges by closing the connection instead of answering. Silence is cheaper than a 403 and gives your client nothing to fingerprint — so a consistent ERR_EMPTY_RESPONSE from one specific site, while everything else loads fine, is often a block rather than a bug.