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
celery could launch from a broker url contains special char password, but redbeat couldn't ,with error outputs:
CRITICAL/MainProcess] beat raised exception <class 'redis.exceptions.AuthenticationError'>: AuthenticationError('invalid password')
The text was updated successfully, but these errors were encountered:
just add a param setting in get_redis function:
StrictRedis.from_url(conf.redis_url, decode_responses=True, decode_components=True)
could solve this problem
I can confirm the problem exists for every special character.
Also by using quote_plus() python function, the problem does not resolve.
Is there any fix for this?
celery could launch from a broker url contains special char password, but redbeat couldn't ,with error outputs:
CRITICAL/MainProcess] beat raised exception <class 'redis.exceptions.AuthenticationError'>: AuthenticationError('invalid password')
The text was updated successfully, but these errors were encountered: