Do you run ./script/delayed_job with the -e production
flag set?
gpaul
2009-11-14 15:50:47
Does anything appear in log/delayed_job.log? You mentioned the production log, but delayed job has its own log.
You might try making a separate class instead of using the _later() method.
class PreviewImageJob < Struct.new(:item_id)
def perform
item = Item.find(item_id)
item.generate_interior_images!
end
end
John,
While I too used the collective Idea fork, I found that Tobi's script works too. I just need a tmp/pid directory (which you may have) and you get the log file and can cross reference this file with what your error column says in your Delayed::Job.first record (or whatever job it is of course). Script for running as a daemon from tobi fork
Oh, and you did restart, if you made changes right? Had to ask.