Mattias Bud wrote: > I have some jobs running through cron jobs and runner that suddenly > starts failing. > > This is how it looks: > > from > /usr/local/lib/ruby/gems/1.8/gems/rails-2.1.2/lib/commands/runner.rb:47 > from > /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in > `gem_original_require' > from > /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in > `require' > from /usr/local/www/letter_archive/crontabs/../script/runner:3 > > This only happens if the job gets triggered by cron not if I do it by > hand. > > I suspect this started hapening when I upgraded to gem 1.3.1 > > Any ideas?
I'd have to see more of the stack trace to be sure, but it's probably due to problems with either the PATH or GEM_HOME environment variables in the cron shell context. Try a crontab command like env PATH=/usr/local/bin:/usr/bin GEM_HOME=/usr/local/lib/ruby/gems/1.8 /usr/local/www/letter_archive/script/runner -e production <command> -- Rails Wheels - Find Plugins, List & Sell Plugins - http://railswheels.com --~--~---------~--~----~------------~-------~--~----~ 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 [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

