Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

can't git-push to heroku due to "Build stream timed out"

Tags:

git

django

heroku

I have a Django app on heroku, I commited and pushed many time before but on the last time I've tried to push I got this error (and I keep getting it):

$ git push heroku master
Counting objects: 16, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (9/9), done.
Writing objects: 100% (9/9), 24.22 KiB | 0 bytes/s, done.
Total 9 (delta 7), reused 0 (delta 0)
remote: Compressing source files... done.
remote: Building source:
remote:
remote: Build stream timed out, reverting to polling..........................
..............................................................................

Seems like it is not going to stop. why does it happens and what can I do?

Thanks.

like image 999
Elisha Avatar asked Feb 11 '15 00:02

Elisha


5 Answers

I'm seeing this now. When I check https://status.heroku.com/ I see that there is an issue and they write "We have temporarily disabled application builds to reduce error rate while we continue investigating this issue."

So the issue is probably not related to your app.

like image 50
user1515295 Avatar answered Nov 15 '22 03:11

user1515295


Wait an hour and then try again, I'm not kidding!

like image 40
etayluz Avatar answered Nov 15 '22 02:11

etayluz


Mine did that for a while then eventually just went through without me doing anything.

like image 33
smcdrc Avatar answered Nov 15 '22 02:11

smcdrc


I had a similar problem, and going to the "Activity" tab for the app on my Heroku dashboard, I can see details of the build. For me, the details indicated the slug size was too large. Try going to your Heroku dashboard and get more info about the reason for the build failing.

like image 2
Steve V Avatar answered Nov 15 '22 02:11

Steve V


The solution for me was to push the changes gradually. I picked an older commit and pushed that first, before pushing HEAD. Apparently, there were just too many commits to be processed.

like image 1
Michiel de Wit Avatar answered Nov 15 '22 02:11

Michiel de Wit