Created
June 17, 2013 14:03
-
-
Save razum2um/5797096 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if Rails.env.development? | |
Rails.logger.info "Delayed::Job is executed synchronously in #{Rails.env} mode." | |
Delayed::Job.class_eval do | |
def self.enqueue(obj) | |
Rails.logger.info "Delayed::Job:SYNC START" | |
Rails.logger.info obj.inspect | |
obj[:payload_object].perform | |
Rails.logger.info "Delayed::Job:SYNC END" | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment