aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/action_controller_overview.md
diff options
context:
space:
mode:
authorGaurav Sharma <gaurav2728@gmail.com>2016-01-20 00:50:47 +0530
committerGaurav Sharma <gaurav2728@gmail.com>2016-01-20 00:50:47 +0530
commit147461919645b6cc215e18bdd7d4103e92998e64 (patch)
tree8d94b583c6a9b65f27373ac91226378cbe12408e /guides/source/action_controller_overview.md
parent1347f08521881efacfc42a7284073272affc1d1e (diff)
downloadrails-147461919645b6cc215e18bdd7d4103e92998e64.tar.gz
rails-147461919645b6cc215e18bdd7d4103e92998e64.tar.bz2
rails-147461919645b6cc215e18bdd7d4103e92998e64.zip
[ci skip] update guide for Puma web server instead of Webrick
Rails 5.0 default server puma web server. following commit - https://github.com/rails/rails/commit/ae48ea69
Diffstat (limited to 'guides/source/action_controller_overview.md')
-rw-r--r--guides/source/action_controller_overview.md4
1 files changed, 0 insertions, 4 deletions
diff --git a/guides/source/action_controller_overview.md b/guides/source/action_controller_overview.md
index f68f2d1faf..9ef2c1a441 100644
--- a/guides/source/action_controller_overview.md
+++ b/guides/source/action_controller_overview.md
@@ -995,10 +995,6 @@ you would like in a response object. The `ActionController::Live` module allows
you to create a persistent connection with a browser. Using this module, you will
be able to send arbitrary data to the browser at specific points in time.
-NOTE: The default Rails server (WEBrick) is a buffering web server and does not
-support streaming. In order to use this feature, you'll need to use a non buffering
-server like [Puma](http://puma.io), [Rainbows](http://rainbows.bogomips.org)
-or [Passenger](https://www.phusionpassenger.com).
#### Incorporating Live Streaming