When deploying my Rails application through Capistrano, the last thing it tries to do is:
sudo -p 'sudo password: ' -u app /home/user/public_html/example.com/current/script/process/reaper
Then it throws this error:
failed: "sh -c \"sudo -p 'sudo password: ' -u app /home/user/public_html/example.com/current/script/process/reaper\"" on 123.456.789.012
The application is still deploying and starting normally ... but what does the / reaper process do and what can I do to get rid of the error?
source
share