From df03065eaf2b61a3b0b618b8dc79476b965564a0 Mon Sep 17 00:00:00 2001 From: Markus Linnala Date: Wed, 16 Oct 2019 12:49:18 +0300 Subject: [PATCH] change: xtransport: Return http response status string as error, do name make own string This gives much better possibilities to diagnose problems than error message with only "informative" part being 500. --- dnscrypt-proxy/xtransport.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dnscrypt-proxy/xtransport.go b/dnscrypt-proxy/xtransport.go index 7811ce68..9bc7f14c 100644 --- a/dnscrypt-proxy/xtransport.go +++ b/dnscrypt-proxy/xtransport.go @@ -272,7 +272,7 @@ func (xTransport *XTransport) Fetch(method string, url *url.URL, accept string, if resp == nil { err = errors.New("Webserver returned an error") } else if resp.StatusCode < 200 || resp.StatusCode > 299 { - err = fmt.Errorf("Webserver returned code %d", resp.StatusCode) + err = errors.New(resp.Status) } } else { (*xTransport.transport).CloseIdleConnections()