diff options
author | Abirdcfly <[email protected]> | 2022-08-28 04:39:26 +0800 |
---|---|---|
committer | GitHub <[email protected]> | 2022-08-27 14:39:26 -0600 |
commit | e1801fdb19988a319fdc174ad39391e1a1c12f54 (patch) | |
tree | ad9e67999ac299cdd8fde6dea4d8986da3054fba /modules/caddyhttp/reverseproxy/upstreams.go | |
parent | 0c57facc67910a6b0994763ac8e6e55e693f20e4 (diff) | |
download | caddy-e1801fdb19988a319fdc174ad39391e1a1c12f54.tar.gz caddy-e1801fdb19988a319fdc174ad39391e1a1c12f54.zip |
Remove duplicate words in comments (#4986)
Diffstat (limited to 'modules/caddyhttp/reverseproxy/upstreams.go')
-rw-r--r-- | modules/caddyhttp/reverseproxy/upstreams.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/caddyhttp/reverseproxy/upstreams.go b/modules/caddyhttp/reverseproxy/upstreams.go index f49bb289b..b9f85a2ce 100644 --- a/modules/caddyhttp/reverseproxy/upstreams.go +++ b/modules/caddyhttp/reverseproxy/upstreams.go @@ -137,7 +137,7 @@ func (su SRVUpstreams) GetUpstreams(r *http.Request) ([]*Upstream, error) { _, records, err := su.resolver.LookupSRV(r.Context(), service, proto, name) if err != nil { // From LookupSRV docs: "If the response contains invalid names, those records are filtered - // out and an error will be returned alongside the the remaining results, if any." Thus, we + // out and an error will be returned alongside the remaining results, if any." Thus, we // only return an error if no records were also returned. if len(records) == 0 { return nil, err |