I'm currently using Heroku CI, with the standard "heroku-redis" and it works just fine, but I'm now trying to switch to using "heroku-redis:in-dyno".
{
"environments": {
"test": {
"addons":[
"heroku-redis:in-dyno",
"heroku-postgresql:in-dyno"
]
}
}
}
However, my builds are now failing.
It appears from the errors in the build that when trying to initialize my application and parse the REDIS_URL environment variable, it's blank, rather than the expected URL.
This URL is set as expected with normal "heroku-redis", just not the "heroku-redis:in-dyno" version for some reason.
Am I missing something?