diff --git a/http/httpclient/client.go b/http/httpclient/client.go index a3265db1b..93800932e 100644 --- a/http/httpclient/client.go +++ b/http/httpclient/client.go @@ -135,7 +135,7 @@ func (jc *HttpClient) Send(method, url string, content []byte, followRedirect, c if err != nil { if strings.Contains(err.Error(), "unsupported protocol scheme") { // Wrong URL, so no need to retry - return false, fmt.Errorf("invalid URL %q. Please ensure the URL includes a valid scheme like http:// or https://: %w", url, err) + return false, fmt.Errorf("%w\nThe recieved error indicats an invalid URL: %q, Please ensure the URL includes a valid scheme like 'http://' or 'https://'.", err, url) } return true, err }