mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-11-22 00:05:57 -05:00
a misinterpretation of the spec on http-2-next led to the introduction of the max_requests option, a cap of requests on a given connection, which in http/2 case, would be initialized with MAX_CONCURRENT_STREAMS, which means something else. This has been fixed already in http-2-next, and this is the summary of changes required to support it. The `max_requests` option is kept, as it can still be useful from a user perspective, but the default in http/2 is now INFINITY, which disables it effectively. The HTTP/1 cap is bumped to 200, but it may fall as well soon.