gitlabhq/lib/tasks/resque.rake

15 lines
351 B
Ruby
Raw Normal View History

2011-12-12 23:03:38 +01:00
require 'resque/tasks'
2012-10-08 22:19:07 +02: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"