trying to deploy the app with a Redis that runs on a custom hostname and port, the app did not connect to the Redis although the REDIS_URL environment variable was provided.
It seems the environment variable REDIS_URL is actually not used, but the app will always try to connect to the default port on localhost.
I managed to get it run only after explicitly reading the environment variable - will open a PR for that change.
Hi,
trying to deploy the app with a Redis that runs on a custom hostname and port, the app did not connect to the Redis although the
REDIS_URL
environment variable was provided. It seems the environment variableREDIS_URL
is actually not used, but the app will always try to connect to the default port on localhost.I managed to get it run only after explicitly reading the environment variable - will open a PR for that change.
Regards Jonas