mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
32 lines
917 B
Ruby
32 lines
917 B
Ruby
Capistrano::Configuration.instance.load do
|
|
before "deploy", "sidekiq:quiet"
|
|
after "deploy", "sidekiq:restart"
|
|
|
|
_cset(:sidekiq_timeout) { 10 }
|
|
|
|
namespace :sidekiq do
|
|
|
|
desc "Quiet sidekiq (stop accepting new work)"
|
|
task :quiet do
|
|
run "cd #{current_path} && bundle exec sidekiqctl quiet #{current_path}/tmp/pids/sidekiq.pid"
|
|
end
|
|
|
|
desc "Stop sidekiq"
|
|
task :stop do
|
|
run "cd #{current_path} && bundle exec sidekiqctl stop #{current_path}/tmp/pids/sidekiq.pid #{fetch :sidekiq_timeout}"
|
|
end
|
|
|
|
desc "Start sidekiq"
|
|
task :start do
|
|
rails_env = fetch(:rails_env, "production")
|
|
run "cd #{current_path} ; nohup bundle exec sidekiq -e #{rails_env} -C #{current_path}/config/sidekiq.yml -P #{current_path}/tmp/pids/sidekiq.pid >> #{current_path}/log/sidekiq.log 2>&1 &"
|
|
end
|
|
|
|
desc "Restart sidekiq"
|
|
task :restart do
|
|
stop
|
|
start
|
|
end
|
|
|
|
end
|
|
end
|