Skip to content

Commit 08689e9

Browse files
authoredJan 8, 2025··
fix: include url on HTTP error (#29)
we have per TLD resolvers and this helps end user to self-service when one of DoH resolvers goes down
1 parent 68cc2ce commit 08689e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎request.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ func doRequest(ctx context.Context, url string, m *dns.Msg) (*dns.Msg, error) {
4242
defer resp.Body.Close()
4343

4444
if resp.StatusCode != http.StatusOK {
45-
return nil, fmt.Errorf("HTTP error: %q [%d]", resp.Status, resp.StatusCode)
45+
return nil, fmt.Errorf("HTTP error: %q [%d] from %q", resp.Status, resp.StatusCode, url)
4646
}
4747

4848
if ct := resp.Header.Get("Content-Type"); ct != dohMimeType {

0 commit comments

Comments
 (0)
Please sign in to comment.