gitlab-org--gitlab-foss/lib/tasks/resque.rake

15 lines
351 B
Ruby
Raw Normal View History

2011-12-12 17:03:38 -05:00
require 'resque/tasks'
2012-10-08 16:19:07 -04:00
# Fix Exception
# ActiveRecord::StatementInvalid
# Error
# PGError: ERROR: prepared statement "a3" already exists
task "resque:setup" => :environment do
Resque.after_fork do |job|
ActiveRecord::Base.establish_connection
end
end
desc "Alias for resque:work (To run workers on Heroku)"
task "jobs:work" => "resque:work"