about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-04-23 20:59:39 -0700
committerEric Wong <normalperson@yhbt.net>2009-04-23 20:59:39 -0700
commita9fa99940cd6d6f8572f83d6489d402c09b0cf93 (patch)
treeca067f80221951a90583b2cc99038ae9090f9b55
parent33956a6cbb9b8810187bf831def6cccc30472674 (diff)
downloadunicorn-a9fa99940cd6d6f8572f83d6489d402c09b0cf93.tar.gz
-rw-r--r--lib/unicorn/http_response.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/unicorn/http_response.rb b/lib/unicorn/http_response.rb
index 6b6fa07..658184b 100644
--- a/lib/unicorn/http_response.rb
+++ b/lib/unicorn/http_response.rb
@@ -25,13 +25,13 @@ module Unicorn
     # Connection: and Date: headers no matter what (if anything) our
     # Rack application sent us.
     SKIP = { 'connection' => true, 'date' => true, 'status' => true }.freeze
-    HEADER_OUT = [ "Connection: close" ] # :nodoc
+    CONNECTION_CLOSE = "Connection: close".freeze #:nodoc
 
     # writes the rack_response to socket as an HTTP response
     def self.write(socket, rack_response)
       status, headers, body = rack_response
       status = "#{status} #{HTTP_STATUS_CODES[status]}"
-      out = HEADER_OUT.dup # shallow copy
+      out = [ CONNECTION_CLOSE ]
 
       # Don't bother enforcing duplicate supression, it's a Hash most of
       # the time anyways so just hope our app knows what it's doing