class Sidekiq::Process
def stop!
This method is *asynchronous* and it can take 5-10
It will shutdown within its configured :timeout value, default 25 seconds.
Signal this process to shutdown.
def stop! raise "Can't stop an embedded process" if embedded? signal("TERM") end