mirror of
https://github.com/searxng/searxng.git
synced 2025-08-03 10:32:21 +02:00
Merge pull request #261 from dalf/upgrade_httpx
[upd] upgrade httpx 0.19.0
This commit is contained in:
commit
dc74df3a55
5 changed files with 58 additions and 65 deletions
|
@ -166,7 +166,7 @@ async def stream_chunk_to_queue(network, queue, method, url, **kwargs):
|
|||
async for chunk in response.aiter_raw(65536):
|
||||
if len(chunk) > 0:
|
||||
queue.put(chunk)
|
||||
except httpx.ResponseClosed:
|
||||
except httpx.StreamClosed:
|
||||
# the response was queued before the exception.
|
||||
# the exception was raised on aiter_raw.
|
||||
# we do nothing here: in the finally block, None will be queued
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue