Chris Carpenter
Chris Carpenter
I am running into the same issue. Oddly others on my team are able to run the code in question, but I am not.
In my case the issue was that I had enabled a new git feature: FSMonitor. go-git does not support the header for this feature yet and thus was causing it...
After a night of sleep, the probable best direction to take this issue is to improve the error handling on the [plumbing/format/index/decoder.go](https://github.com/go-git/go-git/blob/master/plumbing/format/index/decoder.go#L209). It currently assumes that an error means it...
If you pass the values directly into heroku_app_config_association, then it doesn't convert from boolean to int. ``` resource "heroku_app_config_association" "pod" { app_id = "${heroku_app.app.id}" vars = { first = "true"...