Anyone using Passenger with Merb 1.0.11 is probably running into issues with run_later. It's been fixed in 1.1, and it turns out the fix was pretty trivial and has been extracted into a patch you can use it in your existing Merb apps.
http://gist.github.com/137836 Save this file in merb/hacks/run_later.rb and then add this to your config/init.rb before_app_loads block. Merb::BootLoader.before_app_loads do require "#{Merb.root}/merb/hacks/run_later.rb" end Been using this hack for a couple months in production and it has worked as expected. Let me know if anyone sees an issue with it --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "merb" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/merb?hl=en -~----------~----~----~----~------~----~------~--~---
