Closed olalonde closed 8 years ago
The actual issue was that the AWS ELB through which git requests transit had a too low time out and would disconnect me if the build took longer than 1minute. This is explained here actually: https://deis.com/docs/workflow/managing-workflow/configuring-load-balancers/#idle-connection-timeouts
Fixed with:
# find elb name with: aws elb describe-load-balancers
ELB_NAME="a5e901f96530c11e6a5e2068755380ef"
aws elb modify-load-balancer-attributes --load-balancer-name "$ELB_NAME" --load-balancer-attributes "{\"ConnectionSettings\":{\"IdleTimeout\":1200}}"
Related: https://github.com/deis/builder/issues/140#issuecomment-178167749
I am starting to move apps to from deis v1 to deis v2 and am stuck with an app that uses heroku multi buildpack.
In my repo, I have the following
.buildpacks
file:The build is successful on deis v1 but fails on deis v2 with a not really helpful error message:
Here's the full log:
I've succesfuly built and deployed regular Node Procfile apps so I assume this is an issue with the multi buildpack.