cmd: Fix unix socket addresses for admin API requests (#4742)

Fixes a regression in c2327161f7
This commit is contained in:
Francis Lavoie 2022-04-28 10:31:59 -04:00 committed by GitHub
parent dcc98da4d2
commit 2e4c09155a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -669,7 +669,7 @@ func AdminAPIRequest(adminAddr, method, uri string, headers http.Header, body io
}
origin := "http://" + parsedAddr.JoinHostPort(0)
if parsedAddr.IsUnixNetwork() {
origin = "unixsocket" // hack so that http.NewRequest() is happy
origin = "http://unixsocket" // hack so that http.NewRequest() is happy
}
// form the request