You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For you or anyone else who would like to investigate, the URL is parsed by the underlying redis client, ioredis.
We do have some code in this plugin that attempts to remove any username from the URL before passing it along. This was added to support how heroku exposes its redis URLs, IIRC. That code could be the culprit.
Running a js app inside a container,
In
deploy.js
I have the following simple configThe url in the env is
REDIS_URL=redis://redis:6379/0
Apparently it will fail to parse as it will still try to connect to localhost (the default host).
To work around it I need to do the parsing myself:
It will be ideal to have the parsing done by this library.
The text was updated successfully, but these errors were encountered: