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
// String returns the encoded userinfo information in the standard form// of "username[:password]".func (u*Userinfo) String() string {
ifu==nil {
return""
}
s:=escape(u.username, encodeUserPassword)
ifu.passwordSet {
s+=":"+escape(u.password, encodeUserPassword)
}
returns
}
redis-port/cmd/libs.go
Line 41 in a2e08c1
u.User.String()
special characters will be escaped.
The text was updated successfully, but these errors were encountered: