about summary refs log tree commit homepage
path: root/examples
diff options
context:
space:
mode:
authorEric Wong <bofh@yhbt.net>2023-06-01 21:19:35 +0000
committerEric Wong <bofh@yhbt.net>2023-06-05 09:17:18 +0000
commit66c4ed7957459de270cffedfd494562359386d4e (patch)
tree2c780b220798a615fc97f350355831eda093064f /examples
parent9d7bab0bc2211b20806d4d0289a7ea992e49a8a1 (diff)
downloadunicorn-66c4ed7957459de270cffedfd494562359386d4e.tar.gz
Rack::Chunked will be gone in Rack 3.1, so provide a
non-middleware fallback which takes advantage of IO#write
supporting multiple arguments in Ruby 2.5+.

We still need to support Ruby 2.4, at least, since Rack 3.0
does.  So a new (GC-unfriendly) Unicorn::WriteSplat module now
exists for Ruby <= 2.4 users.
Diffstat (limited to 'examples')
-rw-r--r--examples/echo.ru1
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/echo.ru b/examples/echo.ru
index 14908c5..e982180 100644
--- a/examples/echo.ru
+++ b/examples/echo.ru
@@ -19,7 +19,6 @@ class EchoBody < Struct.new(:input)
 
 end
 
-use Rack::Chunked
 run lambda { |env|
   /\A100-continue\z/i =~ env['HTTP_EXPECT'] and return [100, {}, []]
   [ 200, { 'Content-Type' => 'application/octet-stream' },