We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
addrs: __ENV.REDIS_ADDRS.split(",") || new Array("localhost:6379"), // in the form of "host:port", separated by commas
will give you TypeError: Cannot read property 'split' of undefined or null so it is:
TypeError: Cannot read property 'split' of undefined or null
REDIS_ADDRS
localhost:6379
I don't think there is a particular reason to have this take multiple addresses in the example
The text was updated successfully, but these errors were encountered:
No branches or pull requests
will give you
TypeError: Cannot read property 'split' of undefined or null
so it is:REDIS_ADDRS
localhost:6379
is not working.I don't think there is a particular reason to have this take multiple addresses in the example
The text was updated successfully, but these errors were encountered: