Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Check heroku release activity

If a heroku tried to do a release but failed, you may be in a confusing situation where you aren’t using the version of code/config you think you are. Heroku releases (which may fail) can be triggered not only by pushing new versions of code, but by config variable changes, and in some cases add-on changes.

Look at release history with heroku CLI:

heroku releases

Failed releases will be in red. With the id from the left-most column, you can look at specific log output (mainly of our custom release phase) for the failed or successful release, eg:

heroku releases:output v323

You can also see some limited release status info in the Web GUI on the Activity tab.

Restart heroku dynos

From heroku web GUI, you can restart all dynos from the “More” menu in top right navbar, choose “restart all dynos”.

...