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
Message模块配置Redis为不带密码的情况下,会跳转到Messge/redis.go的91行 log.Error("redis.Dial("%s", "%s") error(%v)", tmpProto, tmpAddr, err) 变量tmpProto和tmpAddr都是空
The text was updated successfully, but these errors were encountered:
把61行 reg := regexp.MustCompile("(.+)@(.+)#(.+)|(.+)@(.+)") 改为 reg := regexp.MustCompile("(.+)@(.+)") 只匹配不带密码情况的Redis 因为单机使用只监听了127.0.0.1 问题解决
Sorry, something went wrong.
能否提一个patch过来。我直接merge
@xiaotianhu,的确是因为这个问题搞的
No branches or pull requests
Message模块配置Redis为不带密码的情况下,会跳转到Messge/redis.go的91行
log.Error("redis.Dial("%s", "%s") error(%v)", tmpProto, tmpAddr, err)
变量tmpProto和tmpAddr都是空
The text was updated successfully, but these errors were encountered: