feat: add http2_header_table_size and http2_max_concurrent_streams methods#274
Merged
seanmonstar merged 2 commits intohyperium:masterfrom Mar 2, 2026
Merged
feat: add http2_header_table_size and http2_max_concurrent_streams methods#274seanmonstar merged 2 commits intohyperium:masterfrom
http2_header_table_size and http2_max_concurrent_streams methods#274seanmonstar merged 2 commits intohyperium:masterfrom
Conversation
Adds `http2_header_table_size` method to the client `Builder` --- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: barjin <61918049+barjin@users.noreply.github.com>
Builder in client.rs was missing a method to configure the HTTP/2 SETTINGS_MAX_CONCURRENT_STREAMS value, despite h2_builder exposing max_concurrent_streams. --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: barjin <61918049+barjin@users.noreply.github.com>
seanmonstar
approved these changes
Mar 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Follows the pattern set by the other
http2_methods. The project depends onhyper=1.8.0, which has theheader_table_size()andmax_concurrent_streams()methods (added here). This is omitted for no obvious reason inhyper-utilsandreqwest.Related to apify/impit#385 (will need subsequent PR to
reqwest, adding methods for setting these values there).