Created
December 13, 2017 10:40
-
-
Save sushant12/4546471d79608f6504c3f932ef0d2224 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
require 'resque/tasks' | |
require 'resque/scheduler/tasks' | |
task "resque:setup" => :environment do | |
Resque.before_fork = Proc.new do |job| | |
ActiveRecord::Base.connection.disconnect! | |
end | |
Resque.after_fork = Proc.new do |job| | |
ActiveRecord::Base.establish_connection | |
end | |
Resque::Scheduler.dynamic = true | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment