1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

Merge branch 'master' of github.com:mperham/sidekiq

This commit is contained in:
Mike Perham 2015-08-06 06:15:06 -07:00
commit 1486afe519

View file

@ -60,11 +60,11 @@ class Sidekiqctl
end
def quiet
`kill -USR1 #{pid}`
Process.kill(:USR1, pid)
end
def stop
`kill -TERM #{pid}`
Process.kill(:TERM, pid)
kill_timeout.times do
begin
Process.getpgid(pid)
@ -74,7 +74,7 @@ class Sidekiqctl
end
sleep 1
end
`kill -9 #{pid}`
Process.kill(:KILL, pid)
FileUtils.rm_f pidfile
done 'Sidekiq shut down forcefully.'
end