The default empty string REDIS_PASSWORD="" is always passed to the Redis server when connecting resulting in the following error when Redis is configured without a password (Redis version 6.0.7):
ReplyError: ERR AUTH called without any password configured for the default user. Are you sure your configuration is correct?
This pull request conditionally passes the password option which fixes this problem.
The default empty string
REDIS_PASSWORD=""
is always passed to the Redis server when connecting resulting in the following error when Redis is configured without a password (Redis version 6.0.7):This pull request conditionally passes the
password
option which fixes this problem.