Actions
Bug #12055
closed`NET::HTTPResponse` is not deflating responses with custom `Content-Range` header
Bug #12055:
`NET::HTTPResponse` is not deflating responses with custom `Content-Range` header
Description
The RFC 7233, section 4.2 describes the the possibility of using a custom Content-Range header and not only for bytes https://tools.ietf.org/html/rfc7233#section-4.2. Although, the NET::HTTPResponse considers that Content-Range present on the response during the inflating is in bytes unit.
This issue is caused by this line https://github.com/ruby/ruby/blob/trunk/lib/net/http/response.rb#L252. In the patch I changed it to check if the Content-Range unit is bytes and there is a test to reproduce the error.
Files
Actions