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

Revert "Use Process.kill instead of kill"

This reverts commit ccc70d2ee1.
This commit is contained in:
Mike Perham 2015-11-01 11:13:48 -08:00
parent 12ea27fc3f
commit 1ecb3a4083

View file

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