When response headers exceed a certain size, Hyper throws error

Bug
When the response headers exceed a certain size, I am getting the following error:
Failed to send request: Client error: reqwest::Error { kind: Request, source: hyper_util::client::legacy::Error(SendRequest, hyper::Error(Http2, Error { kind: Reset(StreamId(1), CANCEL, Remote) })) }
Making the same request works fine in Postman and Bruno, so I think it is an issue related to Yaak.
The reason I think it is related to header size, is I copy pasted all the headers into a character counter, and with pageSize=60 header size 13900 characters, the request succeeds with no issue. However with pageSize=61, header size 14100+ characters (in Bruno), the Yaak request fails with the error.

macOS2026.3.1
I’ve fixed this in
mainby increasing max header size to 1MB. Thanks for the report!Wow, that was fast. Thank you for fixing it so quickly!