about summary refs log tree commit homepage
path: root/lib/unicorn/http_response.rb
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-09-16 16:56:22 -0700
committerEric Wong <normalperson@yhbt.net>2009-09-16 16:56:22 -0700
commit04c7fc37ab4fb2fbaa1b4a2570871713cf9d1319 (patch)
tree5a4baecb4b9ee95dd7ca7970141ffe48168e61a2 /lib/unicorn/http_response.rb
parent045f6d741020d4a77bd68bd80891a97782d54850 (diff)
downloadunicorn-04c7fc37ab4fb2fbaa1b4a2570871713cf9d1319.tar.gz
This gives applications more rope to play with in case they have
any reasons for changing some values of the default constants.

Freezing strings for Hash assignments still speeds up MRI, so
we'll keep on doing that for now (and as long as MRI supports
frozen strings, I expect them to always be faster for Hashes
though I'd be very happy to be proven wrong...)
Diffstat (limited to 'lib/unicorn/http_response.rb')
-rw-r--r--lib/unicorn/http_response.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/unicorn/http_response.rb b/lib/unicorn/http_response.rb
index 0d05b2c..f226ef3 100644
--- a/lib/unicorn/http_response.rb
+++ b/lib/unicorn/http_response.rb
@@ -32,7 +32,7 @@ module Unicorn
     # Rack does not set/require a Date: header.  We always override the
     # Connection: and Date: headers no matter what (if anything) our
     # Rack application sent us.
-    SKIP = { 'connection' => true, 'date' => true, 'status' => true }.freeze
+    SKIP = { 'connection' => true, 'date' => true, 'status' => true }
     OUT = [] # :nodoc
 
     def self.write_header(socket, status, headers)