We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2631c0 commit b2b4f60Copy full SHA for b2b4f60
storages/redis.go
@@ -15,7 +15,7 @@ type RedisClient struct {
15
func NewRedisClient(host string, port uint16, password string) (*RedisClient, error) {
16
var addr bytes.Buffer
17
addr.WriteString(host)
18
- addr.WriteString("-")
+ addr.WriteString(":")
19
addr.WriteString(strconv.Itoa(int(port)))
20
21
conn, err := redis.Dial("tcp", addr.String())
0 commit comments