首页 > 解决方案 > httpx/httpcore 内脏中某处的异常

问题描述

我有一个使用任何代理列表的抓取引擎,并在代理不起作用的情况下重试。所以有很多代理超时,连接被拒绝,证书错误等。在我从 aiohttp 切换到 httpx 后,我有很多似乎没有阻碍的内部异常,只是垃圾日志。

16:47:37: Future exception was never retrieved
future: <Future finished exception=BrokenResourceError()>
Traceback (most recent call last):
  File "/usr/lib/python3.9/asyncio/selector_events.py", line 856, in _read_ready__data_received
    data = self._sock.recv(self.max_size)
ConnectionResetError: [Errno 104] Connection reset by peer

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/home/pooh/venv39/lib/python3.9/site-packages/httpcore/_backends/anyio.py", line 60, in read
    return await self.stream.receive(n)
  File "/home/pooh/venv39/lib/python3.9/site-packages/anyio/_backends/_asyncio.py", line 1095, in receive
    raise self._protocol.exception
anyio.BrokenResourceError

也许开发人员中的某个人可以阐明它是什么?

标签: pythonhttpxanyio

解决方案


推荐阅读