about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-11-14 17:53:11 -0800
committerEric Wong <normalperson@yhbt.net>2009-11-14 17:53:11 -0800
commitada989844090d88c4fdc0a568ff4df2c0c8397fb (patch)
tree099ee913efaf433d0fe921fdde59b701c97a7cf6
parent83dc65dcc16047edcbc65d077097da83b5caf2d6 (diff)
downloadunicorn-ada989844090d88c4fdc0a568ff4df2c0c8397fb.tar.gz
We never set this as a hash key, so there's no performance
gain from having a frozen string.
-rw-r--r--lib/unicorn/const.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/unicorn/const.rb b/lib/unicorn/const.rb
index e418cc1..bd613d5 100644
--- a/lib/unicorn/const.rb
+++ b/lib/unicorn/const.rb
@@ -30,8 +30,8 @@ module Unicorn
 
     # A frozen format for this is about 15% faster
     REMOTE_ADDR="REMOTE_ADDR".freeze
-    HTTP_EXPECT="HTTP_EXPECT".freeze
     RACK_INPUT="rack.input".freeze
+    HTTP_EXPECT="HTTP_EXPECT"
   end
 
 end