How to stop delayed_job if I run it with the -m "monitor" parameter? Processes continue to reboot!
The command with which I run delayed_job is:
script/delayed_job -n 4 -m start
-m starts monitoring processes that spawn a new delayed_job process if it dies.
The command I use to stop:
script/delayed_job stop
But this does not stop the monitoring processes, which, in turn, start all the processes again. I just wish they left. I can kill them with what I have, but I was hoping there was a command line option to just close it all.
source share