From b07f6958aca4e275ff1d1aebabd0eef0e0e4b330 Mon Sep 17 00:00:00 2001 From: Matthew Holt Date: Fri, 6 Dec 2019 12:00:04 -0700 Subject: Use "IsUnixNetwork" function instead of repeating the logic --- modules/caddyhttp/reverseproxy/healthchecks.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/caddyhttp/reverseproxy/healthchecks.go b/modules/caddyhttp/reverseproxy/healthchecks.go index 92b3547..a64d845 100644 --- a/modules/caddyhttp/reverseproxy/healthchecks.go +++ b/modules/caddyhttp/reverseproxy/healthchecks.go @@ -117,7 +117,7 @@ func (h *Handler) doActiveHealthChecksForAllHosts() { return } hostAddr := addr.JoinHostPort(0) - if addr.Network == "unix" || addr.Network == "unixgram" || addr.Network == "unixpacket" { + if addr.IsUnixNetwork() { // this will be used as the Host portion of a http.Request URL, and // paths to socket files would produce an error when creating URL, // so use a fake Host value instead; unix sockets are usually local -- cgit v1.2.3