From 5843069e7ecca3e5f71f9b99280beb88b79e4c67 Mon Sep 17 00:00:00 2001 From: Santiago Pastorino Date: Tue, 14 Feb 2012 21:51:18 -0200 Subject: Rack body respond to each and not to join This fixes undef `to_str' for Rack::Chunked::Body when using caches_action + streaming on an action Closes #5027 --- actionpack/lib/action_controller/caching/actions.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'actionpack/lib') diff --git a/actionpack/lib/action_controller/caching/actions.rb b/actionpack/lib/action_controller/caching/actions.rb index bd3b0b5df3..ba96735e56 100644 --- a/actionpack/lib/action_controller/caching/actions.rb +++ b/actionpack/lib/action_controller/caching/actions.rb @@ -103,8 +103,10 @@ module ActionController #:nodoc: end def _save_fragment(name, options) - content = response_body - content = content.join if content.is_a?(Array) + content = "" + response_body.each do |parts| + content << parts + end if caching_allowed? write_fragment(name, content, options) -- cgit v1.2.3