search for: village_url

Displaying 1 result from an estimated 1 matches for "village_url".

2011 Aug 15
2
Delayed_Job: code working fine without .delay / with .delay it fails. Why?
...t; from a village table from 1 to 2, from 2 to 3 and so on. It works fine without .delay . But i need it so whats wrong with that code? #village_controller def post_info @village = Village.find(params[:id]) @village.delay.upgrade flash[:notice] = "Upgrading" redirect_to village_url(@village) end #village.rb def upgrade sleep 3 update_attribute(:pit_id, pit_id + 1) end I''ve heard that there could be problems with the variables when using delay ? I already tried @village.delay.upgrade(@village) -- You received this message because you are subscribed...