1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00

Merge pull request #659 from patriciomacadden/header-headers

Use `headers` method instead of `header` method in `Sinatra::Response`
This commit is contained in:
Konstantin Haase 2013-03-07 09:57:41 -08:00
commit 08effab5d2

View file

@ -125,7 +125,7 @@ module Sinatra
headers["Content-Length"] = body.inject(0) { |l, p| l + Rack::Utils.bytesize(p) }.to_s
end
[status.to_i, header, result]
[status.to_i, headers, result]
end
private
@ -159,7 +159,7 @@ module Sinatra
private
def setup_close(env, status, header, body)
def setup_close(env, status, headers, body)
return unless body.respond_to? :close and env.include? 'async.close'
env['async.close'].callback { body.close }
env['async.close'].errback { body.close }