Commit 4702b531 authored by Darren Shepherd's avatar Darren Shepherd

Don't check etcd if scheme is unix

parent f801572f
......@@ -263,6 +263,9 @@ func (s componentStatusStorage) serversToValidate() map[string]*componentstatus.
klog.Errorf("Failed to parse etcd url for validation: %v", err)
continue
}
if etcdUrl.Scheme == "unix" {
continue
}
var port int
var addr string
if strings.Contains(etcdUrl.Host, ":") {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment