2013-01-09 00:44:05 -05:00
|
|
|
namespace :sidekiq do
|
|
|
|
desc "GITLAB | Stop sidekiq"
|
|
|
|
task :stop do
|
|
|
|
run "bundle exec sidekiqctl stop #{pidfile}"
|
|
|
|
end
|
|
|
|
|
|
|
|
desc "GITLAB | Start sidekiq"
|
|
|
|
task :start do
|
2013-01-28 10:22:45 -05:00
|
|
|
run "nohup bundle exec sidekiq -q post_receive,mailer,system_hook,project_web_hook,gitolite,common,default -e #{Rails.env} -P #{pidfile} >> #{Rails.root.join("log", "sidekiq.log")} 2>&1 &"
|
2013-01-09 00:44:05 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def pidfile
|
2013-01-09 17:56:47 -05:00
|
|
|
Rails.root.join("tmp", "pids", "sidekiq.pid")
|
2013-01-09 00:44:05 -05:00
|
|
|
end
|
|
|
|
end
|