forked from mirror/redis
feat: fix linter
This commit is contained in:
parent
aee0cc6cae
commit
002143fcee
|
@ -267,7 +267,7 @@ func setupTCPConn(u *url.URL) (*Options, error) {
|
||||||
|
|
||||||
// getHostPortWithDefaults is a helper function that splits the url into
|
// getHostPortWithDefaults is a helper function that splits the url into
|
||||||
// a host and a port. If the host is missing, it defaults to localhost
|
// a host and a port. If the host is missing, it defaults to localhost
|
||||||
// and if the port is missing, it defaults to 6379
|
// and if the port is missing, it defaults to 6379.
|
||||||
func getHostPortWithDefaults(u *url.URL) (string, string) {
|
func getHostPortWithDefaults(u *url.URL) (string, string) {
|
||||||
host, port, err := net.SplitHostPort(u.Host)
|
host, port, err := net.SplitHostPort(u.Host)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in New Issue