httpx/httpcore内脏中的某个地方出现异常

2024-06-16 13:30:31 发布

您现在位置:Python中文网/ 问答频道 /正文

我有一个刮削引擎,它使用任何代理列表,并在代理不工作时重试。所以有很多代理超时、连接被拒绝、证书不正确等等。在我从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

也许开发人员中的某个人可以解释一下它是什么


Tags: inpyself代理mostliblineexception