go fmt
This commit is contained in:
@@ -127,7 +127,7 @@ func hostAndPort(address string) (host string, port uint64, err error) {
|
|||||||
}
|
}
|
||||||
port, err = strconv.ParseUint(address[colonIndex+1:], 10, 64)
|
port, err = strconv.ParseUint(address[colonIndex+1:], 10, 64)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", 0, fmt.Errorf("server port parse error: %v", err)
|
return "", 0, fmt.Errorf("server port parse error: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
return address[:colonIndex], port, err
|
return address[:colonIndex], port, err
|
||||||
|
|||||||
Reference in New Issue
Block a user