If you define a value greater than 0 for shutdown_retries and in the shutdown_redis method after it has executed the process termination and entered the retry loop the system will start looking for the pidfile
INFO - Waiting for pidfile to appear at tmp/pids/redis.pid...
Of course there is no pidfile becaue it was destroyed when the process terminated by redis-server
We get the following error...
Looks like the issue is with the pid call. The logic that set @pid in v0.3.0 was removed and the new logic is bombing out because when you send the TERM signal to the process it deletes the pidfile.
If you define a value greater than 0 for shutdown_retries and in the shutdown_redis method after it has executed the process termination and entered the retry loop the system will start looking for the pidfile
Of course there is no pidfile becaue it was destroyed when the process terminated by redis-server We get the following error...
Seems something is not quite right.