diff options
author | Nick Howard <ndh@baroquebobcat.com> | 2012-06-30 16:04:08 -0600 |
---|---|---|
committer | Nick Howard <ndh@baroquebobcat.com> | 2012-06-30 16:04:08 -0600 |
commit | 167a0b9e83222a4bd16240932a55c1fd7a72dc44 (patch) | |
tree | dae9a8ec0559290dae8f65d20c3dad34e573a3ee | |
parent | 0d400ae5b99fface36b080e65adaedc029b136cb (diff) | |
download | rails-167a0b9e83222a4bd16240932a55c1fd7a72dc44.tar.gz rails-167a0b9e83222a4bd16240932a55c1fd7a72dc44.tar.bz2 rails-167a0b9e83222a4bd16240932a55c1fd7a72dc44.zip |
ActionDispatch::ClosedError no longer is raised. See d142572567 for more info.
-rw-r--r-- | actionpack/lib/action_controller/metal/streaming.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/actionpack/lib/action_controller/metal/streaming.rb b/actionpack/lib/action_controller/metal/streaming.rb index eeb37db2e7..9f3c997024 100644 --- a/actionpack/lib/action_controller/metal/streaming.rb +++ b/actionpack/lib/action_controller/metal/streaming.rb @@ -139,9 +139,6 @@ module ActionController #:nodoc: # session or flash after the template starts rendering will not propagate # to the client. # - # If you try to modify cookies, session or flash, an <tt>ActionDispatch::ClosedError</tt> - # will be raised, showing those objects are closed for modification. - # # == Middlewares # # Middlewares that need to manipulate the body won't work with streaming. |