about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-02-25 17:54:24 +0000
committerEric Wong <normalperson@yhbt.net>2011-02-25 17:56:52 +0000
commitcc7e65a1aa1bacc9658a687140011e999be6e3e7 (patch)
tree1b368b70f3d8e2d87d891be4b3c87b0655bd8ec2 /lib
parent2b6dd7653211d3d6b4cb6a46eec11bbde8cab789 (diff)
downloadunicorn-cc7e65a1aa1bacc9658a687140011e999be6e3e7.tar.gz
Ruby 1.8.* users should get the latest Ruby 1.8.7 anyways since
they contain critical bugfixes.  We don't keep workarounds
forever since the root problem is fixed/worked-around in
upstream and people have had more than a year to upgrade Ruby.
Diffstat (limited to 'lib')
-rw-r--r--lib/unicorn/tee_input.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/unicorn/tee_input.rb b/lib/unicorn/tee_input.rb
index 6d37f87..637c583 100644
--- a/lib/unicorn/tee_input.rb
+++ b/lib/unicorn/tee_input.rb
@@ -120,7 +120,6 @@ private
   def tee(buffer)
     if buffer && buffer.size > 0
       @tmp.write(buffer)
-      @tmp.seek(0, IO::SEEK_END) # workaround FreeBSD/OSX + MRI 1.8.x bug
     end
     buffer
   end