Commit 79181909 authored by Guangming Wang's avatar Guangming Wang Committed by Miek Gieben

Cleanup: fix some typos in code comment (#3172)

Signed-off-by: default avatarGuangming Wang <guangming.wang@daocloud.io>
parent 434ac69a
...@@ -29,7 +29,7 @@ func Domain(s string) string { ...@@ -29,7 +29,7 @@ func Domain(s string) string {
return dnsutil.Join(l[1 : len(l)-1]...) return dnsutil.Join(l[1 : len(l)-1]...)
} }
// PathWithWildcard ascts as Path, but if a name contains wildcards (* or any), the name will be // PathWithWildcard acts as Path, but if a name contains wildcards (* or any), the name will be
// chopped of before the (first) wildcard, and we do a higher level search and // chopped of before the (first) wildcard, and we do a higher level search and
// later find the matching names. So service.*.skydns.local, will look for all // later find the matching names. So service.*.skydns.local, will look for all
// services under skydns.local and will later check for names that match // services under skydns.local and will later check for names that match
......
...@@ -89,7 +89,7 @@ func (f *Forward) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg ...@@ -89,7 +89,7 @@ func (f *Forward) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg
if fails < len(f.proxies) { if fails < len(f.proxies) {
continue continue
} }
// All upstream proxies are dead, assume healtcheck is completely broken and randomly // All upstream proxies are dead, assume healthcheck is completely broken and randomly
// select an upstream to connect to. // select an upstream to connect to.
r := new(random) r := new(random)
proxy = r.List(f.proxies)[0] proxy = r.List(f.proxies)[0]
......
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