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
I deployed Redis using a Japanese username and password, and when I try to make a connection from Spring Boot's LettuceConnectionFactory, it fails to establish a connection with the following error:
"Caused by: io.lettuce.core.RedisCommandExecutionException: WRONGPASS invalid username-password pair or user is disabled."
Even though I am using the correct username and password, I am able to connect using other tools like RedisInsight, but the issue is only with LettuceConnectionFactory.
I've reproduced the issue you are having. Seems that Lettuce is not handling these characters in a good way.
We need to prepare a fix and release it. For now I do not have a good workaround for you unfortunately (other than using english characters for username and password)
Hi,
I deployed Redis using a Japanese username and password, and when I try to make a connection from Spring Boot's LettuceConnectionFactory, it fails to establish a connection with the following error:
"Caused by: io.lettuce.core.RedisCommandExecutionException: WRONGPASS invalid username-password pair or user is disabled."
Even though I am using the correct username and password, I am able to connect using other tools like RedisInsight, but the issue is only with LettuceConnectionFactory.
Below is my code:
userName="日本語"
password="日本語"
java
Copy code
I also tried using UnifiedJedis, and it works fine:
java
Copy code
The text was updated successfully, but these errors were encountered: