aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/renderer/streaming_template_renderer.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-04-16 11:22:36 +0200
committerJosé Valim <jose.valim@gmail.com>2011-04-16 11:22:36 +0200
commit3e0aedba909562411b8f369115828a79a7a77a0a (patch)
treeb48f6def55bc754614d4f3310f3c220902a7f4f1 /actionpack/lib/action_view/renderer/streaming_template_renderer.rb
parent29078ff8f1561420a405384772c051dc30bdcbf6 (diff)
downloadrails-3e0aedba909562411b8f369115828a79a7a77a0a.tar.gz
rails-3e0aedba909562411b8f369115828a79a7a77a0a.tar.bz2
rails-3e0aedba909562411b8f369115828a79a7a77a0a.zip
Add more tests, ensure we never yield outside the fiber context and that we swap buffers when moving from parent to child.
Diffstat (limited to 'actionpack/lib/action_view/renderer/streaming_template_renderer.rb')
-rw-r--r--actionpack/lib/action_view/renderer/streaming_template_renderer.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/renderer/streaming_template_renderer.rb b/actionpack/lib/action_view/renderer/streaming_template_renderer.rb
index 1ea00d15ea..5ef6191d79 100644
--- a/actionpack/lib/action_view/renderer/streaming_template_renderer.rb
+++ b/actionpack/lib/action_view/renderer/streaming_template_renderer.rb
@@ -55,7 +55,7 @@ module ActionView
# Set the view flow to support streaming. It will be aware
# when to stop rendering the layout because it needs to search
# something in the template and vice-versa.
- view._view_flow = StreamingFlow.new(view._view_flow, fiber)
+ view._view_flow = StreamingFlow.new(view, fiber)
# Yo! Start the fiber!
fiber.resume