0

When following this guide and getting to the steps in the link, my web.1 dyno crashes immediately. I have not changed anything they did say to in the guide. I then tried to ensure that my database was created with heroku run:detached rake db:migrate and that timed out.

Any information would be great.

jFasaJr
  • 497
  • 4
  • 17
  • Do you find any errors in heroku logs? – dnsh Oct 16 '16 at 18:30
  • I don't know if these are related but if they are I don't know how to really read them: '2016-10-16T17:40:32.400260+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=bcstoreapp.herokuapp.com request_id=474e7cd2-90a5-4daf-af05-2f0b95901ca8 fwd="64.183.182.114" dyno= connect= service= status=503 bytes=' – jFasaJr Oct 16 '16 at 19:22

1 Answers1

1

According to this issue link There was an error that wasn't being addressed in the logs. So you had to run:

heroku run rails console

Some errors doesn't appear on heroku dashboard, so try debug it, or past the log result here.

Or like some other tried here: scale down and scale back up the dynos:

heroku ps:scale web=0

Waited a few seconds...

heroku ps:scale web=1
Community
  • 1
  • 1
Bandi
  • 103
  • 1
  • 8