Heroku displays "error getting custom collector" but only occasionally

I have a Django project hosted on Heroku, with buildpack forked from cirlabs / heroku-buildpack-geodjango . Sometimes when I click on Heroku, he answers

Counting objects: 16, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (9/9), done.
Writing objects: 100% (9/9), 790 bytes, done.
Total 9 (delta 7), reused 0 (delta 0)

-----> Heroku receiving push
-----> Fetching custom buildpack... failed
 !     Heroku push rejected, error fetching custom buildpack

To git@heroku.com:taplister-staging.git
 ! [remote rejected] dev -> master (pre-receive hook declined)
error: failed to push some refs to 'git@heroku.com:heroku-app.git'

I am wondering if this could be a bug with buildpack itself or if it is something about how Heroku interacts with github?

Oh, also among mine heroku configis the buildpack url

BUILDPACK_URL:              https://github.com/taplister/heroku-buildpack-geodjango

Any ideas are greatly appreciated.

+5
source share
1 answer

It happens sometimes. Since you are using a custom buildpack, every time you click Heroku, you download buildpack via Git and then use it to process your build.

, ( , ..), Heroku Git .

, - push.

+8

All Articles