ruby-on-railsherokurakedyno

How can I stop Heroku Dyno that is running a Rails task through Heroku Scheduler?


Heroku Scheduler uses a One-off Dyno to run the scheduled task. That dyno doesn't appear in Heroku Dashboard, but it's there. How can I restart it, or temporarily stop it?


Solution

  • If you have the command line tools installed, heroku ps will list all the running processes, and you can use ps:kill or ps:restart to manage any of them.

    heroku help ps will give you more details.