From 7648bae4c86121b0b259587da11d27297c248633 Mon Sep 17 00:00:00 2001 From: Jeremy Evans Date: Sat, 2 Apr 2022 14:50:03 -0700 Subject: [ruby/net-http] Revert "Update the content-length heading when decoding bodies" This reverts commit https://github.com/ruby/net-http/commit/a7cb30124cf1. This is causing errors in Ruby's CI, will revert for now and try again after testing a fix with Ruby's CI. https://github.com/ruby/net-http/commit/7b852b1feb --- lib/net/http/response.rb | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'lib') diff --git a/lib/net/http/response.rb b/lib/net/http/response.rb index cbe16ca205..08eaeb2cac 100644 --- a/lib/net/http/response.rb +++ b/lib/net/http/response.rb @@ -263,7 +263,6 @@ class Net::HTTPResponse case v&.downcase when 'deflate', 'gzip', 'x-gzip' then self.delete 'content-encoding' - had_content_length = self.delete 'content-length' inflate_body_io = Inflater.new(@socket) @@ -273,9 +272,6 @@ class Net::HTTPResponse ensure begin inflate_body_io.finish - if had_content_length - self['content-length'] = inflate_body_io.bytes_inflated.to_s - end rescue => err # Ignore #finish's error if there is an exception from yield raise err if success @@ -377,14 +373,6 @@ class Net::HTTPResponse @inflate.finish end - ## - # The number of bytes inflated, used to update the Content-Length of - # the response. - - def bytes_inflated - @inflate.total_out - end - ## # Returns a Net::ReadAdapter that inflates each read chunk into +dest+. # -- cgit v1.2.3