forked from mirror/redis
feat: fix linter
This commit is contained in:
parent
175d0d81fc
commit
eb8d0fc81e
|
@ -156,13 +156,12 @@ func (opt *ClusterOptions) init() {
|
||||||
// names will be treated as unknown parameters
|
// names will be treated as unknown parameters
|
||||||
// - unknown parameter names will result in an error
|
// - unknown parameter names will result in an error
|
||||||
// Example:
|
// Example:
|
||||||
// redis://user:password@localhost:6789?dial_timeout=3&read_timeout=6s&max_retries=2&addr=localhost:6790&addr=localhost:6791
|
// redis://user:password@localhost:6789?dial_timeout=3&read_timeout=6s&addr=localhost:6790&addr=localhost:6791
|
||||||
// is equivalent to:
|
// is equivalent to:
|
||||||
// &ClusterOptions{
|
// &ClusterOptions{
|
||||||
// Addr: ["localhost:6789", "localhost:6790", "localhost:6791"]
|
// Addr: ["localhost:6789", "localhost:6790", "localhost:6791"]
|
||||||
// DialTimeout: 3 * time.Second, // no time unit = seconds
|
// DialTimeout: 3 * time.Second, // no time unit = seconds
|
||||||
// ReadTimeout: 6 * time.Second,
|
// ReadTimeout: 6 * time.Second,
|
||||||
// MaxRetries: 2,
|
|
||||||
// }
|
// }
|
||||||
func ParseClusterURL(redisURL string) (*ClusterOptions, error) {
|
func ParseClusterURL(redisURL string) (*ClusterOptions, error) {
|
||||||
o := &ClusterOptions{}
|
o := &ClusterOptions{}
|
||||||
|
|
Loading…
Reference in New Issue