about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-02-22 14:27:41 -0800
committerEric Wong <normalperson@yhbt.net>2010-02-22 14:27:41 -0800
commit3b589335d56ab59aca6772b78eeb96335dc55455 (patch)
tree7a2f55c6a5accc81bd765aa15b35acf7461278ba
parente5f6677627a55d49b72097e106d662d0149bfb05 (diff)
downloadunicorn-3b589335d56ab59aca6772b78eeb96335dc55455.tar.gz
Copy-on-write will always invalidate it regardless, and
the first request is likely to be slow for any app.
-rw-r--r--lib/unicorn/http_request.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/unicorn/http_request.rb b/lib/unicorn/http_request.rb
index 99c11c2..65b09fa 100644
--- a/lib/unicorn/http_request.rb
+++ b/lib/unicorn/http_request.rb
@@ -24,7 +24,7 @@ module Unicorn
 
     # Being explicitly single-threaded, we have certain advantages in
     # not having to worry about variables being clobbered :)
-    BUF = ' ' * Const::CHUNK_SIZE # initial size, may grow
+    BUF = ""
     PARSER = HttpParser.new
     REQ = {}