I have a Post model (below) which has a callback method to modify the body attribute via a delayed job. If I remove "delay." and just execute #shorten_urls! instantly, it works fine. However, from the context of a delayed job, it does NOT save the updated body.
class Post < ActiveRecord::Base
after_create :shorten_urls
def shorten_urls
delay.shorten_urls!
end
def shorten_urls!
# this task might take a long time,
# but for this example i'll just change the body to something else
self.body = 'updated body'
save!
end
end
Strangely, the job is processed without any problems:
[Worker(host:dereks-imac.home pid:76666)] Post#shorten_urls! completed after 0.0021
[Worker(host:dereks-imac.home pid:76666)] 1 jobs processed at 161.7611 j/s, 0 failed ...
Yet, the body is not updated. Anyone know what I'm doing wrong?
-- EDIT --
Per Alex's suggestion, I've updated the code to look like this (but to no avail):
class Post < ActiveRecord::Base
after_create :shorten_urls
def self.shorten_urls!(post_id=nil)
post = Post.find(post_id)
post.body = 'it worked'
post.save!
end
def shorten_urls
Post.delay.shorten_urls!(self.id)
end
end
rails 3.2.7anddelayed_job 3.0.3(withdelayed_job_active_record 0.3.2). I finally got DJ to work (i.e. not only queue/dequeue the job, but actually execute it) by starting up my app with Foreman (obtained via the Heroku Toolbelt as opposed to Passenger. I have also found that restarting the server via the typicaltouch tmp/restart.txtis insufficient as far as getting the DJ process to pick up code changes; instead, I stop the Foreman processes (viacontrol-c), and then runforeman startagain. Please +1 if this helps. – user664833 Oct 24 '12 at 4:57