TUN-2562: Update Cloudflare Origin CA RSA root

This commit is contained in:
Chung-Ting Huang
2019-11-20 13:48:33 -06:00
parent 8ee1faf317
commit 871c3a194f
2 changed files with 24 additions and 23 deletions

View File

@@ -190,10 +190,11 @@ func ValidateHTTPService(originURL string, hostname string, transport http.Round
_, secondErr := client.Do(secondRequest)
if secondErr == nil { // Worked this time--advise the user to switch protocols
return errors.Errorf(
"%s doesn't seem to work over %s, but does seem to work over %s. Consider changing the origin URL to %s",
"%s doesn't seem to work over %s, but does seem to work over %s. Reason: %v. Consider changing the origin URL to %s",
parsedURL.Host,
oldScheme,
parsedURL.Scheme,
initialErr,
parsedURL,
)
}