summary refs log tree commit
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2015-05-07 16:18:48 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2015-05-27 07:42:09 -0700
commit9971732ed0435cfb9924590031593e0a9eea1b70 (patch)
treea359a91bff2c09ecdddcba2e919cf386a738a7a9
parent608346c82e2009f10c5740336be93a0b03fdb1f3 (diff)
downloadrack-9971732ed0435cfb9924590031593e0a9eea1b70.tar.gz
Merge pull request #841 from oskarpearson/use_default_output_buffer
Use the default HTTP output buffer, instead of 5
-rw-r--r--lib/rack/handler/webrick.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/rack/handler/webrick.rb b/lib/rack/handler/webrick.rb
index 264c1689..9594fa04 100644
--- a/lib/rack/handler/webrick.rb
+++ b/lib/rack/handler/webrick.rb
@@ -28,7 +28,6 @@ module Rack
 
         options[:BindAddress] = options.delete(:Host) || default_host
         options[:Port] ||= 8080
-        options[:OutputBufferSize] = 5
         @server = ::WEBrick::HTTPServer.new(options)
         @server.mount "/", Rack::Handler::WEBrick, app
         yield @server  if block_given?