Merge pull request #459 from munnerz/http-aborb-errors

Absorb HTTP client errors in acme http self check
This commit is contained in:
jetstack-bot 2018-04-12 19:20:00 +01:00 committed by GitHub
commit dcb8108660
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -113,7 +113,8 @@ func testReachability(ctx context.Context, domain, path, key string) (bool, erro
response, err := http.Get(url.String())
if err != nil {
return false, err
// absorb http client errors
return false, nil
}
if response.StatusCode != http.StatusOK {