about summary refs log tree commit homepage
path: root/lib/unicorn/http_server.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/unicorn/http_server.rb')
-rw-r--r--lib/unicorn/http_server.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/unicorn/http_server.rb b/lib/unicorn/http_server.rb
index 5d6c023..513269f 100644
--- a/lib/unicorn/http_server.rb
+++ b/lib/unicorn/http_server.rb
@@ -521,7 +521,7 @@ class Unicorn::HttpServer
       r = @app.call(env)
     end
     # r may be frozen or const, so don't modify it
-    @request.response_headers? or r = [ r[0], nil, r[2] ]
+    @request.headers? or r = [ r[0], nil, r[2] ]
     http_response_write(client, r)
   rescue => e
     handle_error(client, e)