summaryrefslogtreecommitdiff
path: root/lib/chef/rest.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/rest.rb')
-rw-r--r--lib/chef/rest.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/chef/rest.rb b/lib/chef/rest.rb
index b1f9063f25..21be437e24 100644
--- a/lib/chef/rest.rb
+++ b/lib/chef/rest.rb
@@ -369,7 +369,6 @@ class Chef
Chef::Log.debug("Streaming download from #{url.to_s} to tempfile #{tf.path}")
# Stolen from http://www.ruby-forum.com/topic/166423
# Kudos to _why!
- size = 0
inflater = if gzip_disabled?
NoopInflater.new
@@ -388,7 +387,6 @@ class Chef
response.read_body do |chunk|
tf.write(inflater.inflate(chunk))
- size += chunk.size
end
tf.close
tf