1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-26 19:21:03 +03:00

Fix compilation.

This commit is contained in:
Vladimir Mihailenco
2012-11-11 16:37:50 +02:00
parent 9e8b988406
commit 7cda614ca1
3 changed files with 3 additions and 15 deletions

View File

@ -28,7 +28,7 @@ func TLSConnector(addr string, tlsConfig *tls.Config) OpenConnFunc {
if err != nil {
return nil, err
}
return tls.Client(conn, tlsConfig)
return tls.Client(conn, tlsConfig), nil
}
}