On Sat, Dec 31, 2016 at 4:22 AM, Peter Waller
<pe...@pdftables.com> wrote:
I don't know about you, but when I do `go get`, go get uses https, not HTTP, and the HTTPS link gives a 404 not found.
Yes, go get defaults to https, but depending on whether the -insecure flag is passed, it then falls back to http (see
httpsOrHTTP). But that only happens when there is an error from httpClient.Get, which would happen if they didn't have https configured at all. In the case of a 404, it doesn't fall back to http, so looking more closely I agree that this is a bit odd.
Trying to refresh the package on
godoc.org results in "Error refreshing package: Timeout getting package files from the version control system." so it does at least agree that it can't fetch the package anymore. So definitely something for the
llvm.org admins to fix.