Open takumi2786 opened 11 months ago
I noticed something strange, this only seems to happen when the log level is set to DEBUG.
Yeah, it's a pain. My workaround (solution) was to add this code whenever I run with DEBUG:
logging.getLogger('httpcore').setLevel(logging.INFO)
logging.getLogger('hpack').setLevel(logging.INFO)
The starting point for issues should usually be a discussion...
https://github.com/encode/httpx/discussions
Possible bugs may be raised as a "Potential Issue" discussion, feature requests may be raised as an "Ideas" discussion. We can then determine if the discussion needs to be escalated into an "Issue" or not.
This will help us ensure that the "Issues" list properly reflects ongoing or needed work on the project.
Problem
I tried to use httpx as http2 client and I want to execute multiple requests in parallel.
First, I tried to parallelize with ThreadPoolExecutor, but it threw a lot of exceptions. Then I used Asyncio and it worked.
reproducion
server
client