Tim Uckun
2009-Apr-18 10:14 UTC
A bug in sweeper.rb? [was: A frustrating and strange error when config.action_controller.perform_caching = true]
I fired up the debugger and watched the code happen tonight. The problem occurs if the config.action_controller.perform_caching = true in your environment. It''s not set to true in development but it is set to true in production and staging. The problem occurs not in my controllers but in sweeping.rb (part of rails). Rails calls this code for every controller which was instantiated in the same request ( I think). Running the page it "sweeps" the following controllers in this order. #<MatchCommissionedScheduledController:0xb679b4fc> #<MatchController:0xb61694f8> The problem is that on the second call to clean up MatchController it pukes. The code snippets in sweeping.rb are.. The cleanup is in the following method of sweep.rb def after(controller) callback(:after) if controller.perform_caching # Clean up, so that the controller can be collected after this request self.controller = nil end A little later...... def callback(timing) controller_callback_method_name "#{timing}_#{controller.controller_name.underscore}" action_callback_method_name "#{controller_callback_method_name}_#{controller.action_name}" __send__(controller_callback_method_name) if respond_to?(controller_callback_method_name, true) __send__(action_callback_method_name) if respond_to?(action_callback_method_name, true) end The problem is that after the first controller has been cleared controller is nil when it gets to the callback (even if it''s not nil when it hits the after method) I am not quite sure what is the problem but could this be a bug in sweeper.rb? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Seemingly Similar Threads
- A frustrating and strange error when config.action_controller.perform_caching = true
- Cache sweeping and render_component (my mistake or Rails bug?)
- inserted_at seems buggy in production mode?
- Sweeper for few models
- "Undefined method merge" when using sweeper