1

I'm fairly new to Heroku and deploying Rails app. I have an app hosted in Heroku with a MySQL database, been working flawlessly for a month or so. Today, I did a db:pull and took longer than expected. When I did db:push, I'm getting an error:

Sending schema>
Schema:         17% |=======                                   | ETA:  00:00:22
Saving session to push_201107211055.dat..
!!! Caught Server Exception
HTTP CODE: 503
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org /TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
  <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
  <style type="text/css">
    html, body, iframe { margin: 0; padding: 0; height: 100%; }
    iframe { display: block; width: 100%; border: none; }
  </style>
<title>Application Error</title></head>
</head>
<body>
  <iframe src="https://s3.amazonaws.com/heroku_pages/error.html">
    <p>Application Error</p>
  </iframe>
</body>
</html>

What might be the issue?

Luis D Urraca
  • 2,024
  • 4
  • 24
  • 46

2 Answers2

2

(while this may not "fix" anything, it did work for me twice, definitely worth a shot) try:

heroku restart
heroku db:push --confirm app-name-1234
Brett C
  • 291
  • 2
  • 13
0

do you have the taps gem?

gem install taps

Source

Nicos Karalis
  • 3,724
  • 4
  • 33
  • 62